標籤:nginx
配置好nginx+php-fpm,訪問首頁,提示報錯:
2015/01/14 23:04:39 [error] 10964#2788: *2 rewrite or internal redirection cycle while internally redirecting to "/", client: 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源碼如下(如需轉載,請標註原作者 [email protected]):
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 "/",