WordPress htaccess 重写规则
尝试重定向任何符合特定条件的页面以重定向到另一个位置。到目前为止,我已经:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯...基本上,您的正则表达式表示“查询字符串以
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.