不同的域名可以指向同一个项目

Posted 认真生活、快乐工作 - 马云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不同的域名可以指向同一个项目相关的知识,希望对你有一定的参考价值。

server{
        listen 80;
        server_name www.hello.com;
        index index.html index.htm index.php admin.php;
        root  /home/wwwroot/default/dexin/dragon/public;

        #error_page   404   /404.html;
        #include enable-php.conf;
        include enable-php-pathinfo.conf;
        location /nginx_status
        {
            stub_status on;
            access_log   off;
        }

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /\.
        {
            deny all;
        }

    location / {
            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=/$1  last;
            }
        }

        access_log  /home/wwwlogs/access.log;
}
server{
        listen 80;
        server_name www.world.com;
        index index.html index.htm index.php admin.php;
        root  /home/wwwroot/default/dexin/dragon/public;

        #error_page   404   /404.html;
        #include enable-php.conf;
        include enable-php-pathinfo.conf;
        location /nginx_status
        {
            stub_status on;
            access_log   off;
        }

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /\.
        {
            deny all;
        }

    location / {
            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=/$1  last;
            }
        }

        access_log  /home/wwwlogs/access.log;
}

实践证明,这两个域名都可以访问同一个资源。
www.hello.com
www.world.com

以上是关于不同的域名可以指向同一个项目的主要内容,如果未能解决你的问题,请参考以下文章

使用nginx实现一个主机部署多域名指向不同docker项目

tomcat部署多个项目,通过不同域名解析访问不同的网站

宝塔同IP或同域名不同端口分别对应不同网站教程

宝塔同IP或同域名不同端口分别对应不同网站教程

二级域名原理以及程序代码

多域名解析到同一网站