将某些网址从https重定向到http

时间:2015-11-03 10:48:10

标签: nginx haproxy

我将某个网址从https重定向到nginx中的http。例如,从https://www.test.com/bloghttp://www.test.com/blog。但是,我得到这个网页有一个重定向循环错误。

Ps:我在HaProxy后面运行我的Web服务器。

我的nginx配置在这里:

location ~ ^/(blog) {
return 301 http://$server_name$request_uri;
}

0 个答案:

没有答案