gqinvs 发表于 2016-12-25 07:18:15

nginx 跳转配置

  --------监控8000端口访问,则跳转到http://www.baidu.com
  worker_processes 1;
events {
worker_connections 1024;
}
http {
include    mime.types;
default_type application/octet-stream;
sendfile    on;
keepalive_timeout 65;
server {
listen    80;
server_name localhost;
location / {
roothtml;
index index.html index.htm;
}
error_page500 502 503 504 /50x.html;
location = /50x.html {
roothtml;
}
}
server {
listen    8000;
server_name localhost;
rewrite ^(.*) http://www.baidu.com;
}
}
页: [1]
查看完整版本: nginx 跳转配置