Nginx从https重定向到http仅针对特定页面

时间:2018-09-25 11:13:06

标签: nginx ubuntu-16.04 http-redirect nginx-location

我有一个运行带有SSL的Nginx Web服务器的网站。因此,我的站点仅可以访问https://example.com。 现在,我想从https重定向到特定页面的HTTP。就像这样http://example.com/test/test.html

这是我的配置,但不起作用。 服务器{

    listen 80;
    listen 443;
    server_name example.com www.example.com;

    root /var/www/example;

    index index.php index.html index.htm;



     ssl on;
     ssl_certificate /etc/nginx/ssl/domain.crt;
     ssl_certificate_key /etc/nginx/ssl/private.key;
     ssl_session_timeout 5m;
     ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
     ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
     ssl_prefer_server_ciphers on;



    access_log /var/log/nginx/example_access.log;
    error_log /var/log/nginx/example_error.log;

location /test {
        return 302 http://$server_name$request_uri;
        }
}

现在网站上同时启用了HTTP和https。 在这种情况下,请帮助我。

0 个答案:

没有答案