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.
我想这样做:
Redirect 301 test/ http://domain.com/test/tester/
当我这样做时,我会收到许多重定向的错误消息。
我需要一些帮助。
谢谢奥尼 _
您已经忘记添加 RewriteCond 以避免重定向循环。
RewriteCond %{REQUEST_URI} ^/?test/$ RewriteRule /?test/ /test/tester/ [R=301]