如何进行 .htaccess 嵌套重定向?

发布于 2024-10-12 05:52:17 字数 331 浏览 3 评论 0原文

如何进行 .htaccess 嵌套重定向?

RewriteCond %{QUERY_STRING} ^id=(.*)$
RewriteRule ^$ %{REQUEST_URI}%1? [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ ?id=$1 [L,QSA]

它确实从 /?id=url 重定向到 /url,但不会将 /1/2/3/?id=url 重定向到<代码>/1/2/3/url。

How to make .htaccess nested redirect?

RewriteCond %{QUERY_STRING} ^id=(.*)$
RewriteRule ^$ %{REQUEST_URI}%1? [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ ?id=$1 [L,QSA]

It does redirect from /?id=url to /url, but does not redirect /1/2/3/?id=url to /1/2/3/url.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

有木有妳兜一样 2024-10-19 05:52:17

在第二行: ^$ 匹配空字符串,因此只有根(如 /?id=X)被重定向。您必须添加 .* 来匹配所有 URI:

RewriteRule ^.*$ %{REQUEST_URI}%1? [R=301,L]

At the second line: ^$ matches an empty string, so only the root (like /?id=X) is redirected. You have to add .* to match all URIs:

RewriteRule ^.*$ %{REQUEST_URI}%1? [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文