我的.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?
以下是支持https和http的正确解决方案:
# Redirect to www
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
乌利希期刊指南。:用于像.co这样的域名。英国,取代
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
with
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+\.[^.]+$
如果可能的话,将其添加到主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。