标签: apache .htaccess mod-rewrite redirect
这是我的重写规则:
RewriteRule ^ttnews.php(.*) / [R=301,L]
这是我打开的网址: http://partnerlift.localhost.de/ttnews.php%3Fcat%3D3%26uid%3D197%26startResult%3D0
但它并没有重定向。错误是什么?
答案 0 :(得分:1)
您需要添加[NE] 标记你的规则
RewriteRule ^ttnew\.php(.*)$ / [R=301,L,NE]