Apache mod_rewrite help, send folder to subdomain
I want to make my .htaccess file do this:
Fro开发者_JAVA技巧m: http://www.domain.com/example -OR- http://domain.com/example To: http://example.domain.com
and
From: http://www.domain.com/example/newfolder/file.html?q=blank -OR- http://domain.com/example/newfolder/file.html?q=blank To: http://example.domain.com/newfolder/file.html?q=blank
For the life of me, I have searched and searched, and just can't figure it out.
Try this rule:
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$
RewriteRule ^([^/.]+)(/.*)?$ http://$1.example.com$2 [L,R=301]
精彩评论