我有Let's Encrypt SSL
证书用于exampledomain.com。 www.exampledomain.com重定向到https://exampledomain.com,但是exampledomain.com给出了“ Apache2 Ubuntu Default Page”。我尝试使用.htaccess
文件中的以下代码重定向它。第一部分是由WordPress安装程序自动添加的。
.htaccess文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.exampledomain.com/$1 [R,L]