私の不注意のために、私は http://www.domain.com:8080/xxx/index.html をインターネットに載せました。そのトラフィックを失いたくないので、そのURLを永続的にリダイレクトしたい http://www.domain.com/xxx/index.html nginxはこれを達成できますか?ありがとう
server {
listen www.domain.com:8080;
server_name www.domain.com;
rewrite ^ http://www.domain.com permanent;
}
それをする必要があります。