您好,我一直在网上搜索此问题的答案,但找不到。我正在寻找使用 htaccess 从 url 中删除特定参数。
例如,我有以下网址:
www.mysite.com/product.php?product_id=123&session=sdfs98d7fs9f8d7
www.mysite.com/anotherurl.php?session=12312341341&someotherparam=123
我需要他们 301 重定向到:
www.mysite.com/product.php?product_id=123
www.mysite.com/anotherurl.php?someotherparam=123
请注意,上面的网址只是示例。无论有多少参数是 url 的一部分或会话位于何处,我都需要从任何和所有 url 中删除会话参数。
我想我需要一种方法来获取直到 session=blah 的 url 字符串和 session=blah 之后的 url 字符串,然后将这两个部分结合起来并重定向到新的 url。
非常感谢任何帮助,谢谢。