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代码的主要内容,如果未能解决你的问题,请参考以下文章

Apache 强制Http跳转Https

设置http跳转https的几种方法

apache如何设置http自动跳转到https

cpanle/Apache 强制http跳转到https

Apache由http自动跳转到https的方法

怎么配置apache让只能用https访问,不能用http访问