Hello.
Since I installed your cart in my /shop directory to serve the shopping part of my website, I would like to redirect a few of the pages (Like the contact, TOS, Return, and Privacy) to the ones I already have. I tried using the .htaccess file in the main /shop directory, but it doesn't seam to work. (Note: .htaccess has always been confusing for me, so sorry if I made a simple error)
Here is the .htaccess code I added at the end:
"
RewriteEngine On
RewriteRule http://domain.com/shop/contact-us http://domain.com/contact [R=301,L]
"
OR
"
Redirect 301 /contact-us ../contact
"
Neither works. Any help would be appreciated.
Thanks!