我需要redirect来自所有的stream量
http://subdomain.domain.com/
至
http://subdomain.domain.com/folder/
当然,“文件夹”是一个特定的文件夹。 我试过这个:
RewriteCond %{HTTP_HOST} ^subdomain\.domain\.com$ RewriteRule ^.*$ http://subdomain.domain.com/folder/ [L]
但它不起作用。 怎么了?
尝试这个:
RewriteCond %{HTTP_HOST} ^subdomain\.domain\.com$ RewriteRule ^/$ http://subdomain.domain.com/folder/ [R,L]
我做的唯一的改变是在RewriteRule之后的选项中添加R 该选项告诉Apache做一个302redirect。 如果你想永久redirect,你可以使用R=301 。