Apache 配置 http 转 https
Posted 正义的伙伴!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache 配置 http 转 https相关的知识,希望对你有一定的参考价值。
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [R,L] RewriteEngine On RewriteCond %{HTTP_HOST} www.wqj17.cn [NC] RewriteRule ^(.*)$ http://wqj17.cn/$1 [L,R=301] </IfModule>
以上是关于Apache 配置 http 转 https的主要内容,如果未能解决你的问题,请参考以下文章