在我的服务器上安装HTTPS并在Wordpress中安装Really Simple SSL plugin后,我的网站现在可以在这种情况下正确地从HTTP重定向到HTTPS:
www.example.org
被重定向到https://example.org
example.org
被重定向到https://example.org
http://example.org
被重定向到https://example.org
但我有许多链接,在SSL安装指向http://www.example.org
之前,现在尝试访问https://www.example.org
,在这里有一个不安全的连接错误。
有没有办法通过.htaccess
或其他任何方式从网址中删除www?这是我的.htaccess
配置:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress