默认用nginx跑web管理台会有问题,需要加个rewrite
location /
{
if (!-e $request_filename)
{
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
开源地址
gitee.com/ruzuojun/Lepus
如无特殊说明,文章均为本站原创,转载请注明出处
- 转载请注明来源:开源数据库监控系统–Lepus
- 本文永久链接地址:http://www.hongxiaowei.com/xiaowei/668.html