gpt4 book ai didi

.htaccess - 如何使用 .htaccess 重定向字符串?

转载 作者:行者123 更新时间:2023-12-02 03:22:57 25 4
gpt4 key购买 nike

我需要为数千个不断变化的 URL 设置重定向。

从此 - example.com/product?product_id=blue_alwayshanging

对此 - example.com/widget?product_id=blue_alwayshanging

以我有限的知识,我认为类似下面的内容是朝着正确方向迈出的一步。我错过了什么?它不起作用。

RewriteEngine on
RedirectMatch 301 ^/product?product_id=blue_.* /widget?product_id=.*

最佳答案

RewriteEngine 激活 mod_rewrite。而 RedirectMatch 是一个 mod_alias 指令。 RedirectMatch 也不匹配查询字符串,但是您不需要这样做,因为查询字符串只需要原封不动地传递到目标。

尝试用以下单行代码替换您当前的代码:

RedirectMatch 301 ^/product /widget

关于.htaccess - 如何使用 .htaccess 重定向字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32016440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com