目录下info.php文件能正常访问,但是上传的项目 页面访问出现 “此网页包含重定向循环“错误

解决方案 »

  1.   

    如何进入admin.php的,感觉是一直进入admin.php,一直跳转
      

  2.   

    http://120.24.250.169/admin.php
      

  3.   

     “此网页包含重定向循环“错误
    这显然不是 php 报的错,如果是你的代码发出的,那么你是如何做的判断?nginx url 重写规则有问题,你却在 php 代码里找原因。能找到吗?
      

  4.   

    nginx url 重写规则有问题  
    那有如何修改  请大侠指点
      

  5.   

    版主说得也对,看看你的rewrite,类似这样的(就你上面的nginx配置是没问题的)
    rewrite ^/(.*)$ http://www.domain.com/$1 redirect;php的header跳转也会报“此网页包含重定向循环”
    如:
    xx.phpheader("Location: oo.php");oo.phpheader("Location: xx.php");这样就会报“此网页包含重定向循环”
    我觉得你代码跳转的可能性比较大,所以我才建议你注释掉你项目里面的header跳转,比如访问admin.php里面,涉及到的所有跳转,这样就能知道是nginx还是php的错误了
      

  6.   

    把admin.php跳转的index.php的代码发出来看看,还有nginx的配置文件,完整的
      

  7.   

    admin  就只有这句话
    <?php
    header("Location: index.php?g=System&m=Admin&a=index");
      

  8.   


    user  www www;
    worker_processes  auto;error_log  /alidata/log/nginx/error.log crit;
    pid        /alidata/server/nginx/logs/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process. 
    worker_rlimit_nofile 65535;events 
    {
      use epoll;
      worker_connections 65535;
    }
    http {
    include       mime.types;
    default_type  application/octet-stream; #charset  gb2312;

    server{
    #server_name    /alidata/www/default;
    index index.html index.htm index.php; 
    location ~ .*\.php?$ {
    root   /alidata/www/default;
    index index.html index.htm index.php admin.php; 
                fastcgi_pass   127.0.0.1:98;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                include        fastcgi_params;
            }
    }

    server_names_hash_bucket_size 128;
    client_header_buffer_size 32k;
    large_client_header_buffers 4 32k;
    client_max_body_size 8m; sendfile on;
    tcp_nopush     on; keepalive_timeout 15; tcp_nodelay on; fastcgi_connect_timeout 300;
    fastcgi_send_timeout 300;
    fastcgi_read_timeout 300;
    fastcgi_buffer_size 64k;
    fastcgi_buffers 4 64k;
    fastcgi_busy_buffers_size 128k;
    fastcgi_temp_file_write_size 128k; gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 16k;
    gzip_http_version 1.0;
    gzip_comp_level 2;
    gzip_types       text/plain application/x-javascript text/css application/xml;
    gzip_vary on;
    gzip_disable msie6;
    root  /alidata/www/default;
        index index.html index.htm index.php; 
    #limit_zone  crawler  $binary_remote_addr  10m;
    log_format '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';
    include /alidata/server/nginx/conf/vhosts/*.conf;
    }
      

  9.   

    有.htaccess吧,发出来看看。
    估计这里有rewrite代码。
      

  10.   

    还有这个目录下的配置文件

    /alidata/server/nginx/conf/vhosts/*.conf;
    他用的nginx,没有.htaccess吧...
      

  11.   

    我也有类似的问题想问。同样的代码,在linux服务器正常运行,在我Windows本地就循环重定向。我看了一下是登录的地方判断session的地方的问题,但是我解决不了,只能本地跳过登录的验证
      

  12.   

    查看下gninx和php日志,看从这里是否可以找到疑点!!!