您的位置:首页 > 编程语言 > PHP开发

index index.html index.htm index.php

2016-06-30 14:42 381 查看
server {
listen       80;
server_name  localhost;
index index.html index.htm index.php;#前后顺序有关系,越在前优先级别越高
root /app/www/default;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass  unix:/tmp/php-cgi.sock;
fastcgi_pass  127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
include /app/server/nginx/conf/rewrite/default.conf;
access_log  /app/log/nginx/access/default.log;
#如果的网站的根目录下 有index.html 和index.php的话会显示index.html,不会显示index.php
#如果是  index index.php index.htm index.html;的话并且根目录下同时有index.html和index.php,会显示index.php
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: