デフォルトの Web サイトのルート ディレクトリは /usr/local/nginx/html です。これを /home/wwwvi /usr/local/nginx/conf/nginx.conf に変更します
の場所を変更します/ {
root html;
index.php tm; }
を に変更しました
場所 / {
root /home/www;
index index.phpindex.htmlindex.htm; }
場所 ~ .php$ {
ルート html;
fastcgi_pass
127.0.0.1: 9000;
fastcgi_index
index.php;
fastcgi_param
SCRIPT_FILENAME $document_root$fast cgi_script_name;
include
fastcgi_params; が の場所に変更されました ~ .php$ {
ルート
/home/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
上記は、Web サイトのルート ディレクトリを変更するための nginx を内容も含めて紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。