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

[版本 3.x] 求助,访问404

[复制链接]
发表于 2018-9-25 11:29:38 | 显示全部楼层 |阅读模式
服务器环境lnmp  + CI版本3.1.7,

前台请求正常,问题是后台模块加载404,项目结构如下




nginx重写如下
server
    {
        listen 443 ssl http2;
        #listen [::]:443 ssl http2;
        server_name dev.bio.cn ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/dev.bio.cn;
        ssl on;
        ssl_certificate /usr/local/nginx/cert/214996247910119.pem;
        ssl_certificate_key /usr/local/nginx/cert/214996247910119.key;
        ssl_session_timeout 5m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;
        ssl_ciphers "EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
        ssl_session_cache builtin:1000 shared:SSL:10m;
        # openssl dhparam -out /usr/local/nginx/conf/ssl/dhparam.pem 2048
        ssl_dhparam /usr/local/nginx/conf/ssl/dhparam.pem;
       
           location / {
                if (!-e $request_filename) {
                        rewrite ^/(.*)$ /index.php?/$1 last;
                        break;
                }
        }
       
        include rewrite/other.conf;
        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include enable-php.conf;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/dev.bio.cn.log;
    }










发表于 2018-9-26 11:20:31 | 显示全部楼层
你访问的 URL 是什么?你是配置的多 APP 吗?

本版积分规则