.htaccess重定向带参数的干净URL

时间:2016-03-05 08:50:25

标签: apache .htaccess mod-rewrite url-redirection

我再次开发了一个网站,所以我更改了网址以清理网址。

我有这个旧链接:

我想将301重定向到此链接:

谢谢

1 个答案:

答案 0 :(得分:0)

您可以在/.htaccess中使用以下内容:

RewriteEngine on


RewriteCond %{THE_REQUEST} /us/\?lang=ar [NC]
RewriteRule ^ http://oriana-hospital.com/ar/about-us? [L,R]

目的地末尾的空问号非常重要,因为它会丢弃旧的查询字符串。