Hi Guys,
I'm trying to create an .htaccess file that not redirects the homepage as well as interior pages to the new site.
Here is what I have been trying to use:
The homepage works, but the /account URL doesn't. It gets sent to an error page after trying to visit www.newwebsitec om/account
I have lots of pages that I'm attempting to match up with the new site. Any suggestions on how to do this and map them out? Thanks in advance!
I'm trying to create an .htaccess file that not redirects the homepage as well as interior pages to the new site.
Here is what I have been trying to use:
Code:
Options +FollowSymLinks RewriteEngine on Redirect 301 / https://www.newwebsite.com Redirect 301 /account https://www.newwebsite.com/customer/account/login
I have lots of pages that I'm attempting to match up with the new site. Any suggestions on how to do this and map them out? Thanks in advance!
Comment