WebMIS
基于lumen框架开发的多用户、多权限开源解决方案,整合了Jquery、CodeMirror、TinyMCE、Chart等插件!
下载地址
https://github.com/webmiss/lumen.git
HMVC安装
1) Apache
AllowOverride All
Require all granted
Options Indexes FollowSymLinks
2) Nginx
listen 80;
server_name lumen.webmis.cn;
set $root_path '/home/www/lumen/public/';
root $root_path;
index index.php index.html;
try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
}
location ~* ^/(webmis|upload|themes|favicon.png)/(.+)$ {
root $root_path;
}