Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将所有流量从 test/(.*) 重定向到http://newdomain.com/test/ $1?我试过这个,但没有奏效:RewriteRule ^test/(.*) http://domain.com/test/$1 [R=301,L]
RewriteRule ^test/(.*) http://domain.com/test/$1 [R=301,L]
RewriteEngine On在重写规则之前添加该行。
RewriteEngine On
我认为,您需要在规则的开头添加一个斜杠:
RewriteRule ^/test/(.*) http://domain.com/test/$1 [R=301,L]