我有一个网站给我 SSL 证书警告,我相信是因为我的网站在加载 https 之前试图重定向到 www。这是我的 htaccess 设置,有什么方法可以一次处理两个重定向,而不必重定向两次?
### Force www
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
### Force https
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]