用户
 找回密码
 入住 CI 中国社区
搜索
12
返回列表 发新帖
楼主: jasonshaw
收起左侧

[已解决] 急求高手指点如何彻底配置nginx下CI,教程上根本没说

[复制链接]
发表于 2011-5-27 18:27:03 | 显示全部楼层
PHP复制代码
 
 
server
  {
    listen       80;
    server_name  [url=www.xxxx.com]www.xxxx.com[/url];  //网站地址  
    index index.html index.htm index.php;
    root  /data/www/mmzz;    //网站目录
    autoindex on;
location / {
        root  /data/www/mmzz;
        index index.html index.htm index.php;
        rewrite ^/$ /index.php last;
        rewrite ^/(?!index.php|robots.txt|images|js|styles|css)(.*)$ /index.php/$1 last;  
}
location ~ ^(.+.php)(.*)$ {
                root       /data/www/mmzz;    //网站目录
                fastcgi_index   index.php;
                fastcgi_split_path_info ^(.+.php)(.*)$;
                fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
                fastcgi_param   PATH_INFO               $fastcgi_path_info;
                fastcgi_param   PATH_TRANSLATED $document_root$fastcgi_path_info;
                fastcgi_pass    127.0.0.1:9000;
                include fastcgi_params;
    }
}
 
 
复制代码

我在linux下的配置,你改改看能不能用哈~
发表于 2011-5-27 18:44:08 | 显示全部楼层
赞Hex。这么热心助人,彻底感动
发表于 2011-12-24 13:44:09 | 显示全部楼层
我也是这种情况 真麻烦 还没配置好呢

本版积分规则