nginx 域名重定向到指定域名指定地址
哈喽,我是帅韬,又来了。
比如想访问
http://www.abc.com
看到的内容是
http://www.cdf.com/fgh/index123.jsp
手起刀落,就是这么简单....
nginx 代码如下
# http://www.abc.com
server {
listen 80;
server_name www.abc.com;
# 带不带斜杆都行
server_name_in_redirect off;
default_type 'text/html';
charset utf-8;
access_log logs/www.abc.com.access.log timed_combined;
location / {
#设置默认主页
index /fgh/index123.jsp;
}
# 代理fgh
location /fgh {
index index123.jsp;
proxy_pass http://www.cdf.com/fgh;
}
}