使用 httpd.conf 从非 www 到 www - // 错误

发布于 2024-11-09 22:20:13 字数 241 浏览 0 评论 0原文

使用时

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

当我在 httpd.conf 文件中 ,为什么我的网站重定向到 www.example.com// (www.example.com//file.html)。为什么有两个斜杠?

When I use

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

in my httpd.conf file, why is my site redirecting to www.example.com//
(www.example.com//file.html). Why are there two slashes ?

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

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

发布评论

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

评论(1

萤火眠眠 2024-11-16 22:20:13

我认为这应该是:

RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

编辑:

上面的 RewriteCond 可能有点矫枉过正 - 它的目的是只匹配前面没有 www 的网址。然而,这也应该有效:

RewriteCond %{HTTP_HOST} ^example.com
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

就像 David Chan 提到的那样, ^(.*)$ 就是你所缺少的。 ^$ 是正则表达式中的特殊字符。以下是解释正则表达式字符串锚点的链接: http://www.regular-expressions.info/anchors .html

另外,这里有一个链接可以更详细地解释 mod_rewrite 语法: http://httpd.apache.org/docs/current/mod/mod_rewrite.html

I think this should be:

RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

EDIT:

The above RewriteCond was probably overkill - it was intended to only match urls that are not preceded by www. However this should work too:

RewriteCond %{HTTP_HOST} ^example.com
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

Like David Chan mentioned, the ^(.*)$ is what you were missing. The ^ and $ are special characters in Regular Expressions. Here is a link that explains regex string anchors: http://www.regular-expressions.info/anchors.html

Also, here is a link that can explain the mod_rewrite syntax in more detail: http://httpd.apache.org/docs/current/mod/mod_rewrite.html

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