Redirecting a Subpath to a Port with Nginx
作者:XD / 发表: 2023年9月14日 08:04 / 更新: 2023年9月14日 08:05 / 编程笔记 / 阅读量:778
Redirecting a Subpath to a Port with Nginx
http://xiedong.me/chat-> http://xiedong.me:2023/
server {
listen 80;
server_name xiedong.me www.xiedong.me;
location ~ ^/chat(/.*)?$ {
return 301 $scheme://xiedong.me:2023$1;
}
location / {
rewrite ^/(.*)$ http://eadst.com/$1 permanent; # redirect to eadst.com
}
}
相关标签