时时商务社区

标题: PHP 网站修改默认访问文件的nginx配置 [打印本页]

作者: 新格网络    时间: 2018-2-14 05:25

            搭建好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配置,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
            
            
您可能感兴趣的文章:
  • Centos6.4 编译安装 nginx php的方法
  • 详解如何在CentOS7中使用Nginx和PHP7-FPM安装Nextcloud
  • nginx配置支持php的pathinfo模式配置方法
  • Nginx下实现pathinfo及ThinkPHP的URL模式
  • 详解Nginx 和 PHP 的两种部署方式的对比
  • Win10 下安装配置IIS + MySQL + nginx + php7.1.7
  • PHP使用Nginx实现反向代理
  • windows下RunHiddenConsole 启动 nginx与php(RunHiddenConsole下载)
            




    欢迎光临 时时商务社区 (http://bbs.4435.cn/) Powered by Discuz! X3.2