/webmis-codeigniter

CodeIgniter framework based on the development of multi users, multi access solutions, integration of CodeMirror, TinyMCE, Chart, Jquery and other plug-ins!

Primary LanguagePHP

WebMIS

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 ]

Install

1、Download:https://github.com/ksphp/codeigniter-webmis
2、Browse ./install

Hide index.php

1、Apache

Open rewrite
[...]
    AllowOverride All
    Require all granted
    Options Indexes FollowSymLinks
[...]

Linux/Unix/Mac:
> a2enmod rewrite

Edit .htaccess

2、Nginx

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;
    }
}