ssdb / phpssdbadmin

SSDB 数据库的图形化界面管理工具
BSD 3-Clause "New" or "Revised" License
205 stars 77 forks source link

安装完phpssdbadmin后无法获得css样式 #8

Open zzc1984 opened 9 years ago

zzc1984 commented 9 years ago

报错如下: No route for css/bootstrap.min.css! /usr/share/nginx/html/phpssdbadmin/iphp/framework/App.php:95 route() /usr/share/nginx/html/phpssdbadmin/iphp/framework/App.php:47 execute() /usr/share/nginx/html/phpssdbadmin/index.php:9 run()

请问这是什么问题,谢谢!

huache commented 8 years ago

应该是 niginx 配置不正确,用下面这个试试看~

location /phpssdbadmin {
    root   /usr/share/nginx/html;
    index index.php;
    try_files $uri $uri/ /phpssdbadmin/index.php?$args;
}