vote up 0 vote down star

How can I redirect all requests going to web root to another folder (e.g. public/)?

I've already tried this (contents of .htaccess in web root):

RewriteEngine on
RewriteRule ^(.*)$ public/$1

But now I have duplicate content for addresses: address.tld/ and address.tld/public/

I would like to redirect address.tld/public/ to address.tld/, so there won't be any duplicates, but I just don't know how to do it and not get into redirecting cycle...

flag

78% accept rate

2 Answers

vote up 0 vote down check

Try these rules:

RewriteCond %{THE_REQUEST} ^GET\ /public/
RewriteRule ^public/(.*) /$1 [L,R=301]
RewriteRule !^public/ public%{REQUEST_URI} [L]
link|flag
This works, thanks very much. – tomp Aug 17 at 22:36
vote up 1 vote down

With mod_rewrite you'll not get redirecting cycles.

link|flag
I got into a cycle using 'Redirect permanent' request, sorry for misinformation. – tomp Aug 17 at 22:37

Your Answer

Get an OpenID
or

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