Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
That code is designed to redirect non www domains to www domains. – Tiggerito Jan 7 at 14:06

1 Answer

up vote 0 down vote accepted

This one should work:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^(.*)\.yourdomain\.com$ [NC] 
RewriteRule ^(.*)$ http://www.yourdomain.com/ [R=301,L]
RewriteCond %{REQUEST_URI} !"^/$"
RewriteRule (.+) http://%{HTTP_HOST}/ [R=301,L]
share|improve this answer
It's perfect - Thanks a lot. – Louisa Jan 7 at 10:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.