기본 웹사이트 루트 디렉터리는 /usr/local/nginx/html입니다. /home/www로 변경하세요.vi /usr/local/nginx/conf/nginx.conf
장소
위치 / {
루트 html;
인덱스 index.php index.html index.htm;
}
이
위치로 변경됨 / {
루트 /home/www;
index index.php index.html index.htm;
}
그런 다음
위치 ~ .php$ {
루트 html;
Fastcgi_pass 127.0.0.1:9000 🎜>
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params ; }
이 위치로 변경됨 ~ .php$ {
루트 /home/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php; 🎜 >
include fastcgi_params;
}
위 내용은 웹사이트 루트 디렉터리를 수정하기 위한 nginx를 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.