WordPress htaccess 重写规则

发布于 2024-12-12 09:12:04 字数 369 浏览 0 评论 0原文

尝试重定向任何符合特定条件的页面以重定向到另一个位置。到目前为止,我已经:

RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^faq/$ "http\:\/\/staging\.somesite\.domain\.com\/" [R=302,L]

但这没有找到匹配项: http://staging.somesite。 domain.com/faq/data/

任何人都可以指出我正确的方向吗?基本上我希望重定向到网站的主页

问候, 罗伯特

Trying to redirect any pages that match a certain criteria to be redirected to another location. So far I have:

RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^faq/$ "http\:\/\/staging\.somesite\.domain\.com\/" [R=302,L]

but this does not find a match for: http://staging.somesite.domain.com/faq/data/

Can anyone point me in the right direction. Basically I want the redirect to go to the homepage of the site

Regards,
Robert

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

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

发布评论

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

评论(1

睡美人的小仙女 2024-12-19 09:12:07

嗯...基本上,您的正则表达式表示“查询字符串以 faq/ 开头,然后就没有其他内容了”。这不是你想要的。要么丢失 $ (这是“字符串结尾”的符号),要么在 $.* >。并且不需要转义目标 URL 中的任何内容,因为它不会被解析为正则表达式。

Well...basically your regular expression says "the query string starts with faq/ and then there is nothing else". This is not what you want. Either lose the $ (which is the symbol for "end of the string") or insert .* before $. And there is no need to escape anything in the target URL as it is not parsed as regular expression.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文