http://www.example.com/marketplace/seller/profile/swamytiles?___
这是网址。我想删除上面网址中的?___ 字符,使用.htaccess url rewrite。
我试过这个Removing a trailing character at the end of a URL using htaccess。但它并没有帮助我。请有人指导我。
答案 0 :(得分:2)
尝试:
RewriteEngine On
RewriteCond %{THE_REQUEST} /([^?]+)\?___ [NC]
RewriteRule ^ /%1? [NC,L,R]