天天看點

nginx php網站配置檔案,PHP 網站如何修改預設通路檔案的nginx配置

搭建好lnmp後,有時候并不需要直接通路index.php,配置其他的預設通路檔案比如index.html這時候需要配置一下nginx才能通路到你想要設定的檔案

直接上代碼,如下是我的配置的一份簡單的nginx到php-fpm的站點,該站點預設通路目錄/ecmoban/www/index.htmlserver {

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配置,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回複大家的。

本文原創釋出php中文網,轉載請注明出處,感謝您的尊重!