我已经要求一些人写一个.htaccess文件去我的服务器上。对我来说是gobbledygook。有人可以帮我查一下吗?
我希望它做三件事:
一。重定向访问xyz.co.uk到www.xyz.co.uk
两个。将访问次数重定向到https
(以便所有访问都转到https://www.xyz.co.uk,我的Google Analytics不会支离破碎)
三。确保404页面正常工作
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.xyz.co.uk [NC]
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^(.*) http://www.xyz.co.uk/$1 [L,R=301]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.xyz.co.uk/$1 [R=301,L]
ErrorDocument 404 /404.html
非常感谢你