http 网址重定向到https

添加http.ini文件

 1 [ISAPI_Rewrite]
 2 CacheClockRate 3600
 3 RepeatLimit 32
 4 
 5 RewriteCond %{HTTPS} on
 6 RewriteCond %{HTTP_HOST} ^www.domain.com [NC]
 7 RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]
 8 
 9 
10 RewriteCond %{HTTPS} off
11 RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

 

posted @ 2018-09-13 11:13  qishidz  阅读(203)  评论(0编辑  收藏  举报