nginx+php-fpm を設定し、ホームページにアクセスすると、エラー メッセージが表示されます:
2015/01/14 23:04:39 [error] 10964#2788: *2 rewrite or external redirection Cycle while内部リダイレクト to "/ "、クライアント: 127.0.0.1、サーバー: bk、リクエスト: "GET / HTTP/1.1"、ホスト: "bk"
エラーの理由: Index コマンドが原因です。解決策は、try_files $uri $uri/ ; を次のように変更することです。 try_files $uri $uri / =404;
特記事項: =404 と 404 の等号の間にスペースを入れることはできません。
完全な設定: bk.conf のソース コードは次のとおりです (再版する必要がある場合は、元の作成者にdefault.fu@foxmail.com のマークを付けてください):
server { listen 80; server_name bk; root d:/website/bk.com/www; index index.html index.htm index.php; location / { try_files $uri $uri/ =404; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; try_files $uri =404; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; #location = /50x.html { # root html; #} location ~ /\.(ht|svn|git) { deny all; } }
上記では、nginx のエラー メッセージ: rewrite or external redirection Cycle while Internally redirecting to "/" を解決する方法を、関連する内容も含めて紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。