nginx默认首页设置问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx默认首页设置问题相关的知识,希望对你有一定的参考价值。

www.和wap.的域名同时绑定到一个根目录上。
访问WWW域名时默认首页为index.html
访问WAP域名的时候默认首页为index2.php
要怎么实现?

nginx配置里面有一行类似于 index.html index.php index.htm

这些顺序就是迷人顺序你把index2.php放在前面就行了
参考技术A 驱动没装好,下载驱动人生进行安装吧。 参考技术B 这个只靠修改nginx不好实现的 要修改里面的xml很麻烦的 你可以看看这个教程 http://wdhdmx.iteye.com/blog/969328 参考技术C server
listen 80;
server_name wap.test.com;
root html/wap/;
index index.html index1.php;

server
listen 80;
server_name www.test.com;
root html/www/;
index index.html index.htm;
参考技术D 看错题了 无语。。。

以上是关于nginx默认首页设置问题的主要内容,如果未能解决你的问题,请参考以下文章

nginx设置404 500页面跳转至首页,K哥

403forbidden404not found宝塔 nginx配置默认首页nginx demo

nginx转跳问题,nginx默认接受所有解析过来的域名,然后转跳到指定的IP

如何设置网站的默认首页

如何将ASP.NET网站的IIS默认的首页为index.aspx.

ThinkPHP5 Nginx通用配置