Apache重定向

需求,将a.com.cn重定向至a.cn,并将a.cn重定向至443端口

修改apache配置文件,httpd.conf


        ServerName a.cn

        DocumentRoot "/test/test/test"


        ErrorLog "|/usr/local/sbin/cronolog logs/%Y%m%d-a.cn-error_log"
        TransferLog "|/usr/local/sbin/cronolog logs/%Y%m%d-a.cn_log"

        RewriteEngine On

        RewriteCond %{HTTP_HOST} ^a.com.cn$     
        RewriteRule ^(.*)$ http://a.cn/$1 [L,R=301]

        RewriteCond %{HTTPS} !=on
        RewriteRule ^(.*) https://%{SERVER_NAME}$1 [R,L]
       
          Options FollowSymLinks
          AllowOverride none
          Require all granted
       


你可能感兴趣的:(Apache重定向)