php默认访问的文件,PHP 网站修改默认访问文件的nginx配置
這篇文章主要介紹了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默认访问的文件,PHP 网站修改默认访问文件的nginx配置的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ip复原Java,力扣:复原IP地址
- 下一篇: java主机上切换用户,linux 主机