預設網站根目錄為/usr/local/nginx/html,要將它改成/home/wwwvi /usr/local/nginx/conf/nginx.conf
將其中的
. location / {
root index index.php index.html index.htm;
location / {
index index.php index.html index.htm;
接著再將
location ~ .php$ {
html;
fastcgi_index
index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include
fastcgi_params;
}
改為location ~ .php$ {
/home/www;
fastcgi_pass
fastcgi_index
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_params;
}
以上就介紹了nginx 修改網站根目錄,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。