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

前端之家收集整理的这篇文章主要介绍了PHP 网站修改默认访问文件的nginx配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

PHP;"> 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配置,希望对大家有所帮助。程序员遇到问题都会上(编程之家jb51.cc)查找问题解答方法!如果觉得站点还不错,随手转发给程序员朋友一下!

原文链接:https://www.f2er.com/php/17377.html

猜你在找的PHP相关文章