码迷,mamicode.com
首页 > Web开发 > 详细

php网站修改默认访问文件的nginx配置

时间:2017-05-27 17:12:53      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:doc   round   访问   document   clu   err   www   pass   127.0.0.1   

搭建好lnmp后,有时候并不需要直接访问index.php,配置其他的默认访问文件比如index.html这时候需要配置一下nginx才能访问到你想要设置的文件

直接上代码,如下是我的配置的一份简单的nginx到php-fpm的站点,该站点默认访问目录/ecmoban/www/index.html

server {
listen 80;

location / {
root /ecmoban/www;
index index.html index.php index.htm;
}

error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

location ~ \.php$ {
root /ecmoban/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.html;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

}

 

php网站修改默认访问文件的nginx配置

标签:doc   round   访问   document   clu   err   www   pass   127.0.0.1   

原文地址:http://www.cnblogs.com/huohuoblog/p/6913441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!