我已经在mmy网站roundabouttech.com上完成了ssl。但是

时间:2019-02-25 05:59:23

标签: wordpress http ssl https

我已经在mmy网站roundabouttech.com上完成了ssl。但是问题是当我输入完整的“ https://roundabouttech.com”时,它会以https打开。但是,当我仅键入“ roundabouttech.com”时,默认情况下会使用http。我该如何解决这个问题。我的网站在wordpress中。

1 个答案:

答案 0 :(得分:0)

尝试此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]
# Rewrite HTTP to HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
</IfModule>
# END WordPress