WEBMIS is MVC framework based on the development of multi users, multi access solutions, integration of CodeMirror, TinyMCE, Chart, Jquery and other plug-ins!
Home:www.ksphp.com
Docs:CodeIgniter Documentation
Online:webmis.ksphp.com/admin [ Uname: webmis Passwd:ksphp.com ]
1、Download:https://github.com/ksphp/codeigniter-webmis
2、Browse ./install
Open rewrite
[...]
AllowOverride All
Require all granted
Options Indexes FollowSymLinks
[...]
Linux/Unix/Mac:
> a2enmod rewrite
Edit .htaccess
location / {
#Hide index.php
if (!-e $request_filename) {
rewrite ^/(.*) /index.php last;
}
}
location /admin/ {
#Hide index.php
if (!-e $request_filename) {
rewrite ^/admin/(.*) /admin/index.php last;
}
}