Okay, so I have a small webstore area and I have it set up so that every webstore is called with the '/webstore/?webstore=webstorename' I managed to have it so you can just type in 'www.domain.com/webstorename'. But for some reason, every page has '?webstore=pagename' trailing it. EG: 'www.domain.com/dash/?webstore=dash'
ErrorDocument 403 /errordocs/noaccess.php
ErrorDocument 404 /errordocs/notfound.php
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([A-Za-z0-9]+)$ /webstore/index.php?webstore=$1
I'm not sure why it's causing this to happen, but I'm hoping it's a small fix. I'm happy to answer any questions you may have. Thanks.