如何使用 nginx 将端口 8080 的 URL 永久重定向到端口 80

如何使用 nginx 将端口 8080 的 URL 永久重定向到端口 80

由于我的粗心,我把http://www.domain.com:8080/xxx/index.html在互联网上。我不想失去这些流量,所以我想永久重定向该网址到 http://www.domain.com/xxx/index.html nginx 能实现这个吗?谢谢

答案1

server {
    listen www.domain.com:8080;
    server_name  www.domain.com;
    rewrite ^ http://www.domain.com permanent;    
}

應該做。

相关内容