I was using Use SEO URLs but, that made the site not work. It kept giving me "Not Found" page. I disabled under settings, Use SEO URLs , and my store is still having the double slashes but it works.
I tried to edit .htaccess to "mask" the problem:
Code: Select all
## SEO URL Settings
RewriteEngine On
RewriteBase /store/
# Fix double slashes in URLs
RewriteCond %{REQUEST_URI} ^(.*/)//+(.*)$
RewriteRule .* %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
That didn't work.
I also tried to edit config.php :
define('HTTP_SERVER', 'https://minnesotacannabisclones.com/store/');
I removed the trailing / but that broke the store completely.