Skip to content

gqfjob/codeigniter-webmis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 87.0%
  • JavaScript 8.3%
  • CSS 4.3%
  • Other 0.4%