I would like to have one redirect for all "not found" pages on my site. Ideally, any such pages would be redirected to the home page. Is this possible without knowing which pages they are? One way is in the .htaccess file, like this perhaps?
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteRule \/.+ / [L,R]
Or can I do it via cPanel somehow?
Thanks for your help!


LinkBack URL
About LinkBacks
Reply With Quote
(at bottom of my post )


