我的.htaccess文件中有这个:
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule (.*) http://www.example.com$1 [R=301,L]
但每当我访问根目录下的文件,比如http://example.com/robots.txt,它就会重定向到http://www.example.comrobots.txt/。
我如何纠正这一点,使它将正确重定向到http://www.example.com/robots.txt?
更改您的配置如下(添加斜杠):
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
或者下面概述的解决方案(由@absiddiqueLive提出)将适用于任何域:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
如果您需要支持http和https并保留协议选择,请尝试以下操作:
RewriteRule ^login\$ https://www.%{HTTP_HOST}/login [R=301,L]
你用checkout。php或者任何你需要支持HTTPS的URL替换login。
但我认为这不是一个好主意。关于推理,请阅读下面的答案。
如果可能的话,将其添加到主Apache配置文件中。这是一种重量较轻的解决方案,所需的加工较少。
<VirtualHost 64.65.66.67>
ServerName example.com
Redirect permanent / http://www.example.com/
</VirtualHost>
<VirtualHost 64.65.66.67>
ServerAdmin me@example.com
ServerName www.example.com
DocumentRoot /var/www/example
.
.
. etc
因此,“example.com”的独立VirtualHost捕获这些请求,然后永久地将它们重定向到您的主VirtualHost。因此,每个请求都不需要REGEX解析,您的客户端浏览器将缓存重定向,因此它们永远不会(或很少)再次请求“错误”的url,从而节省服务器负载。
注意,Redirect permanent / http://www.example.com/中的末尾斜杠。
如果没有它,来自example.com/asdf的重定向将重定向到http://www.example.comasdf而不是http://www.example.com/asdf。