apache http跳转到https代码
Posted fogwu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache http跳转到https代码相关的知识,希望对你有一定的参考价值。
<VirtualHost *:80> ServerAdmin webmasterexample.com DocumentRoot "/mnt/www/" ServerName www.test.com ServerAlias #HTTP_TO_HTTPS_START #301-START <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.test.com/$1 [R=301,L] </IfModule> </VirtualHost>
在你的网站配置文件*.conf 中修改
以上是关于apache http跳转到https代码的主要内容,如果未能解决你的问题,请参考以下文章