ltanme / codeigniter-webmis

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

Home Page:http://www.ksphp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

http://www.ksphp.com


Languages

Language:PHP 86.9%Language:JavaScript 8.3%Language:CSS 4.3%Language:HTML 0.4%Language:ApacheConf 0.0%Language:Shell 0.0%