标签: http https
我用SSL证书购买了域名。但是,用户可以同时访问http://xxxx.com和https://xxxx.com。我如何确保将用户从http重定向到https?
http://xxxx.com
https://xxxx.com
答案 0 :(得分:1)
在你的.htaccess文件中查看现在如何尝试并修改/添加:
RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://xxxx.com/$1