nginx将内部ssl链接重定向到非ssl外部URL链接

时间:2014-06-07 06:32:04

标签: nginx rewrite

我的网站https example.com包含指向http another.com的链接。如何将外部URL的任何请求从https重定向到http?

https://example.com -> http://another.com  

问题是外部链接尝试使用https,它需要是http。

1 个答案:

答案 0 :(得分:0)

试试这个。

server {
   listen 443;
   server_name www.example.com;
   rewrite ^/(.*) http://www.another.com$request_uri permanent;
}