Basically links like this:
Should all go to:
We are using OpenCart 2.3.0.2
I have tried:
Code: Select all
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/dev/(.*)$
RewriteRule ^(.*) https://garrysun.com/ [R=301,NC]
Code: Select all
RewriteRule ^dev/(.*)$ https://garrysun.com [R=301,NC,L]
Code: Select all
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(?:www\.)?garrysun\.com$ [NC]
RewriteRule ^ https://garrysun.com/? [R=301,L]
What is the best .htaccess rule to make this work?