fixed broken link on cart page.

This commit is contained in:
franknstayn
2019-11-06 07:26:02 -06:00
parent a9145ea484
commit 3698312664
7 changed files with 44 additions and 49 deletions

View File

@@ -2,14 +2,13 @@
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$public /$1 [L,R=301]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.crewsportswear.com/beta/$1 [R,L]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
RewriteRule ^ index.php [L]
</IfModule>