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 looked and haven't thus far found a similar question on SO. I want to redirect all my files and folders (directories) from www.example.com/* to www.example.com/website/. My current .htaccess is:

RewriteEngine on

# To set your custom php.ini, add the following line to this file:
# suphp_configpath /home/yourusername/path/to/php.ini

RewriteCond %{HTTP_HOST} ^example\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^/?$ "http\:\/\/www\.example\.com\/website\/" [R=301,L]
Redirect 301 /* http://www.example.com/website/

However it is not working.

share|improve this question
1) (double checking) By "redirect" you mean actual 301 redirect .. or just rewrite (your example shows 301). 2) Need few "real" examples (from URL -> to URL), as it is a bit unclear how you want to redirect (I just see some problems with your current example: /* -> /website/) – LazyOne Mar 21 '12 at 15:28
When someone tries to go to www.example.com/test.html, I want them really to go to www.example.com/website/test.html. When someone goes to www.example.com/documents/test.pdf, I want them to go to www.example.com/website/documents/test.pdf. – Chris Mar 21 '12 at 17:40
@LazyOne Do you see what I need to do now? – Chris Mar 21 '12 at 17:43
I've already answered on your another question. – LazyOne Mar 21 '12 at 18:45

1 Answer

up vote 1 down vote accepted
RewriteCond %{REQUEST_URI} !^/website/
RewriteRule ^.*$ http://www.example.com/website%{REQUEST_URI} [R=301,L]

Small note: I suggest using 302 code for testing and when you are happy with results change it to 301 (where required, of course). The reason -- modern browsers do cache 301 redirects .. so it may work already, but you still may see cached result.

share|improve this answer
For a complete redirect you should always remember to add QSA (Query String Append) ... [R=301,QSA,L] – Bjørne Malmanger Mar 21 '12 at 21:23

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.