http强制https代码

Apache HTTP Server 代码填写
网站目录新建 .htaccess


################################################################
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
################################################################

http 强制 https 代码

正文完
 0