We are closing down a site, so we need to 301 redirect all the subpages on the site to the frontpage (where we will have a message about the site closing down, etc.)
But how do we do that using .htaccess?
Currently our .htaccess looks like this:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
But it doesn't 301 redirect the subpages to the frontpage (and we would like to keep the non-www to www redirection).
Thanks, Louisa