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.
我想使用 htaccess 文件 http://www.doamin.com/pages/add/ 将我的 url 重定向 到 http://www.doamin.com/req/
我怎样才能做到这一点 ?
RewriteEngine on RewriteRule ^/pages/add/(.*) http://www.doamin.com/req/$1 [R]
在这里试试这个:
RewriteEngine On RewriteRule ^/packages/add/$ /req/ [L,R]
另见官方文档。