vote up 0 vote down star

Possible Duplicates
how can I use mod rewrite to redirect a folder to a subdomain ...
Apache rewrite based on subdomain (backwards)

I have catch all rules set up and a subdomain working fine.

However it's still possible to get to a part of my site from http://example.com/subdomain rather than http://subdomain.example.com/

How would I force a permanent redirect?

I'm assuming it's something like:

RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# (rule to see if i am inside subdomain folder)
RewriteRule ^(.*)$ http://www.subdomain.example.com/$1 [R=301,L]
flag

57% accept rate
Thanks David, forgot about code tags! – Improfane Jun 24 at 18:52
As for stackoverflow.com/questions/597390/… I do not want example.com/subdomain/whatever to redirect to subdomain.example.com/whatever. it should return 404 error OR redirect to subdomain.example.com What is the most elegant way to handle it? – Improfane Jun 24 at 19:04

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.