我想强制ssl和www for example.com避免SSL警告(因为我的证书适用于www
这是我的.ebextensions / http_redirect.config配置
files:
"/etc/httpd/conf.d/httpd_redirect.conf" :
mode: "000644"
owner: root
group: root
content: |
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule . https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]
http://example.com重定向到https://example.com 但由于我的ssl证书适用于www.example.com,我收到警告 如果不在请求中,需要更改哪些内容添加www和https?
我可以在这里添加www
RewriteRule . https://www.%{SERVER_NAME}%{REQUEST_URI} [L,R=301]
但我仍然需要弄清楚如何重定向到www以避免证书警告 如果请求是https://example.com