如何将流量从http重定向到https?

时间:2016-09-07 17:09:56

标签: http https

我用SSL证书购买了域名。但是,用户可以同时访问http://xxxx.comhttps://xxxx.com。我如何确保将用户从http重定向到https?

1 个答案:

答案 0 :(得分:1)

在你的.htaccess文件中查看现在如何尝试并修改/添加:

RewriteEngine on
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://xxxx.com/$1