千家信息网

nginx通过url跳转到另外的一个url上

发表于:2025-02-04 作者:千家信息网编辑
千家信息网最后更新 2025年02月04日,#user nobody;worker_processes 1;events {worker_connections 1024;}http {sendfile on;server {listen 70
千家信息网最后更新 2025年02月04日nginx通过url跳转到另外的一个url上

#user nobody;
worker_processes 1;

events {
worker_connections 1024;
}

http {
sendfile on;
server {
listen 7080;
server_name localhost;

     location ^~ /demo {     proxy_pass http://127.0.0.1/;}location / {      root html;    index index.html index.htm;}}

}

0