使用.htaccess删除网址末尾的这些字符

时间:2015-12-17 06:53:44

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

http://www.example.com/marketplace/seller/profile/swamytiles?___

这是网址。我想删除上面网址中的?___ 字符,使用.htaccess url rewrite。

我试过这个Removing a trailing character at the end of a URL using htaccess。但它并没有帮助我。请有人指导我。

1 个答案:

答案 0 :(得分:2)

尝试:

RewriteEngine On

RewriteCond %{THE_REQUEST} /([^?]+)\?___ [NC]
RewriteRule ^ /%1? [NC,L,R]