PHP网站修改默认访问文件的nginx配置代码
发布:smiling 来源: PHP粉丝网 添加日期:2018-09-27 11:48:55 浏览: 评论:0
搭建好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;
- includefastcgi_params;
- }
- }
以上所述是小编给大家介绍的PHP 网站修改默认访问文件的nginx配置,希望对大家有所帮助。
Tags: 代码 文件 网站
相关文章
- ·php代码怎么运行时间?PHP一个页面执行时间类代码(2018-07-20)
- ·借助 Gentle 快速部署代码到测试环境的总结(2018-10-19)
- ·五款PHP代码重构工具推荐(2021-04-16)
- ·为PHP5加入动态Flash文件的生成的支持(2013-12-10)
- ·修改PHP配置文件上传大文件几种方法(apache/nginx)(2014-07-08)
- ·php 怎么打开?教你用什么软件打开php文件(2018-07-01)
- ·apache怎么运行php?如何用apache运行php文件(2018-07-17)
- ·修改apache配置文件去除thinkphp url中的index.php(2020-08-27)
- ·Windows下的PHP安装文件线程安全和非线程安全的区别(2020-11-19)
- ·怎么建立网站_本地怎么搭建网站(2014-11-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)