


解決nginx 報錯提示:rewrite or internal redirection cycle while internally redirecting to '/',
配置好nginx+php-fpm,訪問首頁,提示報錯:
2015/01/14 23:04:39 [error] 10964#2788: *2 rewrite or internal redirection cycle while internally redirecting "/redirect, cycle while, cycleclient" : 127.0.0.1, server: bk, request: "GET / HTTP/1.1", host: "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 internal redirection cycle while internally redirecting to "/",,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

本教程演示瞭如何使用PHP有效地處理XML文檔。 XML(可擴展的標記語言)是一種用於人類可讀性和機器解析的多功能文本標記語言。它通常用於數據存儲
