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.

I got a snippet to redirect all www.domain.com requests to domain.com from another SO question:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

Unfortunately it results in an extra trailing slash:

www.domain.com redirects to domain.com// and www.domain.com/path/ redirects to domain.com//path/

Should I really add an extra rule to remove the trailing slash? Or is there a problem with the above snippet?

share|improve this question

1 Answer

up vote 1 down vote accepted

Just removing the slash from the third line should work:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1$1 [R=301,L]
share|improve this answer
This did the trick, thanks! Now only I have to decide whether I also want to redirect ww. or perhaps even all subdomains.. – Jasper van den Bosch Jun 4 '12 at 22:42

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.