http强制https代码

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


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

个人笔记记录