没有www重定向到HTTPS

时间:2017-10-07 13:46:57

标签: wordpress .htaccess ssl redirect

在我的服务器上安装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

0 个答案:

没有答案