博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
不同的域名可以指向同一个项目
阅读量:5983 次
发布时间:2019-06-20

本文共 1659 字,大约阅读时间需要 5 分钟。

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

转载地址:http://lurox.baihongyu.com/

你可能感兴趣的文章
drupal7 如何去掉js和css文件
查看>>
远程调试 Azure Web App
查看>>
Python 学习笔记 - socket(粘包及其处理方式)
查看>>
Div+CSS命名规范(前端web开发命名规范)
查看>>
如何写一个 JSON Parser
查看>>
内存不能为Read 修复办法
查看>>
JavaFX Scene Builder 8.2 下载地址
查看>>
PHP特级课视频教程_第九集 Squid普通代理实验测试_李强强
查看>>
学习笔记之jvm思维脑图(一)
查看>>
css判断不同分辨率显示不同宽度布局实现自适应宽度
查看>>
jQueryMobile开发时,遇到的一些问题记录
查看>>
mongodb日志按天拆分。
查看>>
iOS的问题及解决办法
查看>>
把代码执行演示嵌在你的PPT中
查看>>
函数的指针
查看>>
Hibernate上路_10-持久化对象操作
查看>>
教你如何改变 Mac 终端背景与命令的颜色
查看>>
Java对象占用内存大小
查看>>
mysql相关
查看>>
通过yeoman创建React-webpack项目
查看>>