求助,访问404
服务器环境lnmp+ CI版本3.1.7,前台请求正常,问题是后台模块加载404,项目结构如下
https://timgsa.baidu.com/timg?image&quality=80%20&size=b10000_10000&sec=1537856151750&di=a39df910a56244914792ba74d869e9e6&imgtype=jpg&src=http%3A%2F%2Fa.hiphotos.baidu.com%2Fimage%2Fpic%2Fitem%2Fcb8065380cd791234fd22477a0345982b2b78087.jpg
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;
}
你访问的 URL 是什么?你是配置的多 APP 吗?
页:
[1]