用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2574|回复: 1
收起左侧

[版本 2.x] 配置了LINUX服务器CI环境,一直默认访问index函数

[复制链接]
发表于 2012-3-15 10:33:25 | 显示全部楼层 |阅读模式
小弟刚配置完linux 服务器的path info  ,总算是能够正常访问,但是发现一个问题,,就是无论输入什么样的地址.访问都是index函数
http://192.168.11.106:7000/mcloudadmin/index.php/mc_app/iframeTop
例如:我访问的是 mc_app 类里的 iframeTop 函数,,但是页面显示的也依然是index函数的内容.
我的服务器是nginx
配置如下:
                  location ~ \.php {
                        fastcgi_pass  127.0.0.1:9000;
                         fastcgi_index index.php;

                        set $real_script_name $fastcgi_script_name;
                        set $path_info "";

                        if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
                                set $real_script_name $1;
                                set $path_info $2;
                        }
                        fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
                        fastcgi_param SCRIPT_NAME $real_script_name;
                        fastcgi_param PATH_INFO $path_info;
                        include /usr/local/nginx/conf/fcgi.conf;     
                }

请问大家知道是什么问题,,有知道的请告诉一下,小弟在线等待~~!谢谢大家~~!
发表于 2012-4-6 17:16:35 | 显示全部楼层
同问。。。。

本版积分规则