Forgive me if this has been answered before, I have searched but could not find the answer.
I have installed Visio List on a domain which previously used a different script. I have several inbound links that were created to use the old script, that now return 404 errors.
For SEO reasons, I would like to preserve those links by doing a permanent 301 redirect of any 404 pages to the homepage.
Normally I would add the code below to .htaccess, however due to the existing .htaccess entires this does not work with Visio List. You get a too many redirects error.
So my question is, how can I achieve this with Visio List?
# Code I would normally add to .htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ / [R=301,L]
I have installed Visio List on a domain which previously used a different script. I have several inbound links that were created to use the old script, that now return 404 errors.
For SEO reasons, I would like to preserve those links by doing a permanent 301 redirect of any 404 pages to the homepage.
Normally I would add the code below to .htaccess, however due to the existing .htaccess entires this does not work with Visio List. You get a too many redirects error.
So my question is, how can I achieve this with Visio List?
# Code I would normally add to .htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ / [R=301,L]