Nginx 308永久重定向不支持IE11

使用Nginx做永久重定向时在IE浏览器中出现308 Permanent redirect

解决方法

*.conf 中使用 rewrite 重写 URL 解决

/etc/nginx/conf.d/example.conf
1
2
3
4
5
6
7
8
9
server{

listen 10250;

server_name example.com;

rewrite ^/ http://47.108.*.*:10051/;

}

参考文章:

评论

:D 一言句子获取中...

加载中,最新评论有1分钟缓存...