1. ルート ディレクトリを変更します
nginx のデフォルト Web サイトのルート ディレクトリは /usr/local/nginx/html であるため、/home/fuxiao/www## に変更する必要があります。
#変更方法: #vi /usr/local/nginx/conf/nginx.conf
location / { root html; index index.php index.html index.htm; }
# を
location / { root /home/fuxiao/www; index index.php index.html index.htm; }
location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param script_filename $document_root$fastcgi_script_name; include fastcgi_params; }
を
location ~ \.php$ { root /home/fuxiao/www; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param script_filename $document_root$fastcgi_script_name; include fastcgi_params; }
2. 403 エラーを解決する
しかし、変更が完了してテストされた後、www の下の Web ページにアクセスすると、以下に示すように、常に 403 禁止のプロンプトが表示されます。
解決策
最初、アクセスした Web ページには読み取り権限がないと思ったので、Web ページに読み取り権限を付与しました。 Web ページを変更しましたが、再度アクセスするとエラーが発生しました。さまざまな方法を試した結果、/home/fuxiao ディレクトリの fuxiao に読み取り権限がないことが問題であることがわかりました。通常のユーザーには最初は読み取り権限がありませんでしたが、403 問題を解決するには、ディレクトリに読み取り権限を付与するだけで済みます。
以上がNginx Web サイトのルート ディレクトリの変更によって発生する 403 を解決する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。