是否可以apache
使用 URL 重写等的某种重定向对两个别名域名使用单个证书?喜欢以下。我想将 example.com 重定向到www.example.com
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com$
RewriteCond %{SERVER_PORT} =443
RewriteRule ^ https://www.example.com%{REQUEST_URI} [L,R=301]
问题是我为www.example.com
域注册了 SSL 证书,并且我有 CNAME example.com,但我在 example.com 上收到 SSL 警告,我可以使用上述技巧使其工作吗?