nginx 域名重定向到指定域名指定地址

Posted 瓜皮程序

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
        }

    }



以上是关于nginx 域名重定向到指定域名指定地址的主要内容,如果未能解决你的问题,请参考以下文章

text Nginx:将IP地址重定向到域名

nginx 域名重定向

Nginx 配置旧域名重定向到新域名

Nginx实践:用rewrite规则实现域名重定向及客户端IP地址透传

宝塔的nginx开启强制https老是无限重定向

Nginx中rewrite实现二级域名三级域名泛域名路径的重写