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.

This seems to be a non-issue for many people (read: I can't find an answer), but I would like to update the following htaccess code to not only remove the 'www' from the URL, but also any sub-directories that are accessed.

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

With this, http://www.example.com/any/ resolves fine, but I want it to redirect to http://example.com/any/ as with the root.

share|improve this question

2 Answers

up vote 3 down vote accepted

I think you're close, but try the following:

# force non-www domain
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule (.*) http://example.com/$1 [R=301,L]

Not sure exactly what you mean about sub-directories, but this follows your example.

share|improve this answer
My apologies, I meant that http://www.example.com and http://www.example.com/any/ should be redirected to http://example.com and http://example.com/any/ respectively. The current setup only allows the root to redirect. – Cycododge Jun 29 '11 at 16:23
What I provided should work then. – Jason McCreary Jun 29 '11 at 17:28
I just tried it another domain, and it does work. I'm curious why then it isn't working on the one I am trying. Thanks for replying anyways. *Now I know why it is a non-issue for most people. – Cycododge Jun 29 '11 at 17:39
I take that back, it does not work. Example http://www.avdra.com/00.districts/06/index.php. It does work however on http://www.avdra.com. – Cycododge Jun 29 '11 at 17:41
I think I just figured out the issue. This htaccess code does not work on addon domains for URLs that point to a sub-directory. – Cycododge Jun 29 '11 at 17:54
show 1 more comment

I had the same problem (trouble stripping 'www' from URLs that point to a sub-directory on an add-on domain), but after some trial and error, this seems to work for me:

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

Example: http://www.addondomain.com/projects/a/gallery/4/2 -> http://addondomain.com/projects/a/gallery/4/2

share|improve this answer
1  
This also works for the same link without 'prettifying' the URL, e.g. [addondomain.com/projects/a/… -> http://addondomain.com/projects/a/index.php?where=gallery&cid=4&id=2 – phpmonkey Jan 2 '12 at 9:39
Good answer - this works generically without any editing... just drop it in to your .htaccess file and you're awway. – Doug May 22 at 9:00

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.