我的网站https example.com
包含指向http another.com
的链接。如何将外部URL的任何请求从https重定向到http?
https://example.com -> http://another.com
问题是外部链接尝试使用https,它需要是http。
答案 0 :(得分:0)
试试这个。
server {
listen 443;
server_name www.example.com;
rewrite ^/(.*) http://www.another.com$request_uri permanent;
}