采用CodeIgniter-3.1.13-0,
在application/Controller下分别创建前台home,后台admin文件夹。
浏览器访问
前台:
http://ci.test.com/index.php/home/index/h
后台:
http://ci.test.com/index.php/admin/index/a
设置伪静态,隐藏入口文件
修改根目录下面的.htaccess,
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L]