.htaccess 仅在 GET 参数存在时重定向
Posted
技术标签:
【中文标题】.htaccess 仅在 GET 参数存在时重定向【英文标题】:.htaccess redirect only if GET parameter exist 【发布时间】:2021-02-02 23:10:18 【问题描述】:我的.htaccess
文件中有以下行:
Redirect 301 /folder1 https://www.example.com/folder2/file.php
这会将所有内容从 /folder1
重定向到 https://www.example.com/folder2/file.php
。
如果 URL 包含 mykey=
GET 参数,我需要一个条件以仅允许此重定向,否则忽略此重定向命令。
我该怎么做?
【问题讨论】:
【参考方案1】:您不能使用进行基本 URI 匹配的 Redirect
指令来执行此操作。
您需要使用基于 mod_rewrite
的规则,如下所示:
RewriteEngine On
RewriteCond %QUERY_STRING (^|&)mykey= [NC]
RewriteRule ^folder1(/|$) /folder2/file.php [R=301,L,NC]
确保在测试前清除缓存。
参考资料:
Apache mod_rewrite Introduction【讨论】:
【参考方案2】:我终于找到了可行的解决方案:
RewriteCond %REQUEST_URI ^/folder1/
RewriteCond %QUERY_STRING mykey=
RewriteRule ^folder1\/$ /folder2/file.php$1 [R=301,L]
【讨论】:
啊,我刚刚记下了您自己的答案。这里没有$1
,RewriteCond %REQUEST_URI
可以去掉以上是关于.htaccess 仅在 GET 参数存在时重定向的主要内容,如果未能解决你的问题,请参考以下文章