从URL viac .htaccess中删除参数

时间:2012-02-15 20:48:42

标签: .htaccess url-rewriting

我需要建议如何使用url从url中删除参数。 Htcaccess

条件如下:

重定向网址:

http://example.com/?movie=2&ref=nf

为:

http://example.com/?movie=2

我尝试了几种选择,但我没有找不到任何东西

感谢您的意见/建议。

THX。

1 个答案:

答案 0 :(得分:1)

尝试将以下内容添加到站点根目录中的.htaccess文件中。

RewriteEngine on
RewriteBase / 

#If request contains ref param
RewriteCond %{THE_REQUEST} \?([^&\ ]+)&ref=  [NC]  
#redirect to URL without the ref param
RewriteRule ^  %{REQUEST_URI}?%1 [L,R=301]