When I started opencart I decided to put the store in the /store subdirectory, just because, and I used my htaccess file (in the root) to redirect those old url's to the new location in the /store subdirectory (example:
Code: Select all
Redirect 301 "/product1" http://www.xyz.com/store/newproduct1
Now I have upgraded from OC 1.5.5.1 to OC 3.0.4.1 and I have a few pages that have differnt url's than the old OC (1.5.5.1) version
My question is, does it matter which htaccess file I use for redirect's? Do I use the root htaccess file for those old files, will that htaccess file in the root work for the /store redirects too? Or do /store specific 301 redirect's need to be in the /store htaccess file?