正则表达式.htaccess
我想将域 news.com 和 newseds.com 重定向到 news.com。我使用的重写是
RewriteRule [paper] http://www.news.com。问题是它不重定向。
谢谢 让
I want to redirect a domain newspaper.com and newspapereds.com to news.com. The rewrite I am using is
RewriteRule [paper] http://www.news.com. The problem is it does not redirect.
Thanks
Jean
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RewriteRule
只会尝试将模式与 URL 路径匹配,而不是与主机部分匹配。您需要使用RewriteCond
代替:除此之外,
[paper]
是一个字符类,仅匹配包含字符p
、< 的一次出现。代码>a、e
和r
。RewriteRule
will only try to match the pattern agains the URL path but not the host part. You need to useRewriteCond
instead:Besides that,
[paper]
is a character class and matches only one occurrence of the containing charactersp
,a
,e
, andr
.