gpt4 book ai didi

php - .htaccess 帮助 - 带有特殊字符的 301 重定向 URL

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:46:29 25 4
gpt4 key购买 nike

我在设置以下 301 重定向时遇到问题。

我正在尝试重定向:

https://www.example.com/blog/wp-includes/js/jquery/jquery.js?ver=1.11.3

到首页:

https://www.example.com/

这是我尝试过但不起作用的方法。

Redirect 301 "/blog/wp-includes/js/jquery/jquery.js\?ver\=1\.11\.3" "/"

最佳答案

如本页所述https://simonecarletti.com/blog/2009/01/apache-query-string-redirects/

Unfortunately, neither Redirect nor RedirectMatch allow you to specify a query string for the redirect source.

所以你必须切换到使用 mod_rewrite,即改用它:

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/blog/wp-includes/js/jquery/jquery\.js$
RewriteCond %{QUERY_STRING} ^ver=1\.11\.3$
RewriteRule ^(.*)$ / [R=301,L]

关于php - .htaccess 帮助 - 带有特殊字符的 301 重定向 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36625136/

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