我有点卡住了将一个网址重定向到另一个网址。
我想重定向
http://samedomain.com/?abc
到
http://samedomain.com/news/title
非常感谢任何帮助。提前谢谢。
答案 0 :(得分:0)
此重写规则会将http://samedomain.com/?abc重定向到http://samedomain.com/news/title:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^abc$
RewriteRule ^ /news/title/? [L,R=301]