合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
将http请求转化为https请求 ~~~ RewriteEngine on RewriteCond %{SERVER_PORT} ^80$ RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [L,R] ~~~ 或者 ~~~ RewriteEngine on RewriteCond %{HTTPS} !=ON RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [L,R] ~~~ 或者 ~~~ <If "%{SERVER_PROTOCOL} != 'HTTPS'"> Redirect "/admin/" "https://www.example.com/admin/" </If> ~~~