我正在为 Cherokee 1.2.2 Web 服务器创建一个 URL 重写规则,其中 URL 为:
http://example.com/pricing?remove=358&referer=cHJpY2luZw==
我想要:
http://example.com/pricing
我还设置了一条规则,用于从 URL 中删除 index.php。该规则如下:
internal | ^/(.*)$ | /index.php?q=$
答案1
如果我理解正确的话,这个正则表达式替换为pricing
应该可以工作:
^/pricing\?
您确定要这样丢失 GET 参数吗?