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

[HELP] Nginx配置ci

[复制链接]
发表于 2015-11-4 00:19:27 | 显示全部楼层 |阅读模式
重写后 还是报404
配置如下
server {
    listen   8086;
    server_name localhost;

    root  /testserver/www/rongmomo/wechat/web/wangwei;

    index index.php;
    try_files $uri $uri/ @rewrite;
    location @rewrite {
        rewrite ^/(.*)$ /index.php?_url=/$1;
    }

    location ~ \.php {
        include fastcgi_params;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    }
}
希望大神指点

本版积分规则