我需要使用 htaccess 从 url 中删除一个参数
从
1) http://example.com/?id=126:&catid=89
2) http://example.com/page?id=126:&catid=89
到
1) http://example.com/
2) http://example.com/page
我正在使用这个 htaccess:
RewriteCond %{REQUEST_URI} ^/page?id=126:&catid=89$
RewriteRule ^page$ /page? [L,R=301]
但这不会删除参数