WDlinux官方论坛's Archiver

hrxiaofei 发表于 2018-4-7 14:16

为什么后台生成的配置文件301跳转和开启htttps跳转不起作用

为什么后台生成的配置文件301跳转和开启htttps跳转不起作用
用的是最新版的后台[code]server {
        listen       80;
        root /www/web/test/public_html;
        server_name test.com www.test.com;
        rewrite ^(.*)$  https://$host$1 permanent;
        index  index.html index.php index.htm;
        rewrite ^/(.*)$ http://www.test.com/$1 permanent;
        error_page  400 /errpage/400.html;
        error_page  403 /errpage/403.html;
        error_page  404 /errpage/404.html;
        error_page  503 /errpage/503.html;
        location ~ \.php$ {
                proxy_pass http://127.0.0.1:88;
                include naproxy.conf;
        }
        location ~ /\.ht {
                deny  all;
        }
        location / {
                try_files $uri @apache;
        }
        location @apache {
                 internal;
                 proxy_pass http://127.0.0.1:88;
                 include naproxy.conf;
        }
}

server {
        listen       443;
        root /www/web/test/public_html;
        ssl                  on;
        ssl_certificate      cert/test.com.pem;
        ssl_certificate_key  cert/test.com.key;
        ssl_prefer_server_ciphers on;
        ssl_session_timeout 10m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
        server_name test.com www.test.com;
        index  index.html index.php index.htm;
        rewrite ^/(.*)$ http://www.test.com/$1 permanent;
        error_page  400 /errpage/400.html;
        error_page  403 /errpage/403.html;
        error_page  404 /errpage/404.html;
        error_page  503 /errpage/503.html;
        location ~ \.php$ {
                proxy_pass http://127.0.0.1:88;
                include naproxy.conf;
        }
        location ~ /\.ht {
                    deny  all;
            }
        location / {
                try_files $uri @apache;
        }
        location @apache {
                 internal;
                 proxy_pass http://127.0.0.1:88;
                 include naproxy.conf;
        }
}
[/code]

页: [1]

Powered by Discuz! Archiver 7.2  © 2001-2009 Comsenz Inc.