我使用以下脚本将流量重定向到https。如果我只是在地址栏中键入domain.com但是如果我输入www.domain.com它没有被重定向,它工作正常。如何使用和不使用www?
进行重定向RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
答案 0 :(得分:0)
试试这个:
RewriteEngine On
RewriteCond%{SERVER_PORT} 80
RewriteRule ^(。*)$ https://www.yourdomain.com/ $ 1 [R,L]
RewriteEngine On
RewriteCond%{SERVER_PORT} 80
RewriteCond%{REQUEST_URI} somefolder
RewriteRule ^(。*)$ https://www.yourdomain.com/somefolder/ $ 1 [R,L]
由于