ASP源码.NET源码PHP源码JSP源码JAVA源码DELPHI源码PB源码VC源码VB源码Android源码
当前位置:首页 >> 低调看直播体育app软件下载 >> PHPjrs看球网直播吧_低调看直播体育app软件下载_低调看体育直播 >> 解决nginx 报错提示:rewrite or internal redirection cycle while internally redirecting to "/",

解决nginx 报错提示:rewrite or internal redirection cycle while internally redirecting to "/",

来源:网络整理     时间:2015-01-16     关键词:

本篇文章主要介绍了"解决nginx 报错提示:rewrite or internal redirection cycle while internally redirecting to "/",",主要涉及到方面的内容,对于PHPjrs看球网直播吧_低调看直播体育app软件下载_低调看体育直播感兴趣的同学可以参考一下: 配置好nginxphp-fpm,访问首页,提示报错:2015/01/14 23:04:39 [error] 10964#2788: *2 rewrite or ...

配置好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源码如下(如需转载,请标注原作者 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 "/",,包括了方面的内容,希望对PHPjrs看球网直播吧_低调看直播体育app软件下载_低调看体育直播有兴趣的朋友有所帮助。

本文网址链接:http://www.codes51.com/article/detail_106700.html

相关图片

相关文章