PHP 网站修改默认访问文件的nginx配置
程序员文章站
2022-05-09 16:52:57
...
这篇文章主要介绍了PHP 网站修改默认访问文件的nginx配置,需要的朋友可以参考下
搭建好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配置的详细内容,更多请关注其它相关文章!
上一篇: Zend Framework教程之前端控制器Zend_Controller_Front用法详解
下一篇: 详细介绍MySQL Group Replication[Single-Primary Mode]的搭建部署过程
推荐阅读
-
在集成环境中修改配置文件php.ini不生效的解决办法
-
apche 多端口配置及网站指向非apche默认的网站文件夹设置方法
-
叫你如何修改Nginx与PHP的文件上传大小限制
-
AndroidStudio修改默认C盘配置文件夹(.android.gradle.AndroidStudio)以及修改后避免踩的坑
-
图解修改IIS web.config配置文件增设置默认文档的方法
-
nginx 配置虚拟主机,实现在一个服务器可以访问多个网站的方法
-
php中配置文件保存修改操作 如config.php文件的读取修改等操作
-
通过修改配置真正解决php文件上传大小限制问题(nginx+php)
-
nginx+php-fpm配置文件的组织结构介绍
-
Docker部署nginx并修改配置文件的实现方法