当前位置:首页 > PHP教程 > php环境安装 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2018-09-27 11:48:55 浏览: 评论:0 

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

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

  1. server { 
  2. listen 80; 
  3. location / { 
  4. root /ecmoban/www; 
  5. index index.html index.php index.htm; 
  6. error_page 404 /404.html; 
  7. location = /404.html { 
  8. root /usr/share/nginx/html; 
  9. error_page 500 502 503 504 /50x.html; 
  10. location = /50x.html { 
  11. root /usr/share/nginx/html; 
  12. location ~ \.php$ { 
  13. root /ecmoban/www; 
  14. fastcgi_pass 127.0.0.1:9000; 
  15. fastcgi_index index.html; 
  16. fastcgi_param SCRIPT_FILENAME$document_root$fastcgi_script_name
  17. includefastcgi_params; 

以上所述是小编给大家介绍的PHP 网站修改默认访问文件的nginx配置,希望对大家有所帮助。

Tags: 代码 文件 网站

分享到: