标签: php apache mod-rewrite
以下网址重写工作正常,但不会重定向到新网址。
RewriteRule ^test-(.*)-(.*)\.html$ /test.php?&abc=$1&xyz=$2/ [L]
答案 0 :(得分:2)
如果您想强制将浏览器重定向到网址,则需要使用R标记:
R
RewriteRule ^test-(.*)-(.*)\.html$ /test.php?&abc=$1&xyz=$2/ [R,L]