欢迎来到山村网

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

2019-03-09 12:48:04浏览:907 来源:山村网   
核心摘要:搭建好lnmp后,有时候并不需要直接访问index.php,配置其他的默认访问文件比如index.html这时候需要配置一下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;}}
(责任编辑:豆豆)
下一篇:

192.168.1.253打不开进不去怎么办

上一篇:

yii如何插入数据库防并发的简单代码

  • 信息二维码

    手机看新闻

  • 分享到
打赏
免责声明
• 
本文仅代表作者个人观点,本站未对其内容进行核实,请读者仅做参考,如若文中涉及有违公德、触犯法律的内容,一经发现,立即删除,作者需自行承担相应责任。涉及到版权或其他问题,请及时联系我们 xfptx@outlook.com