前台文件入口建立
1.config.php 配置 (application\config.php
//分页配置
'paginate' => [
'type' => 'bootstrap',
'var_page' => 'page',
'list_rows' => 15,
],
// 模板输出替换
'view_replace_str' => [
'_PUBLIC_' => '/tp5/public',
'_ROOT_' => '/',
]
2.application\index\ 下建view目录 Index文件夹,index.html 视图文件
3.application\index\ 下controller目录 Index文件夹,index.php 文件,
<?php
namespace app\index\controller;
use think\Controller; //
class Index extends Controller
{
public function index()
{
// return 'ww';
return $this -> fetch(); //
}
}
二、多入口配置。
127.0.0.1/tp5/public/index.php/index/index/index 访问前台模块
127.0.0.1/tp5/public/index.php/admin/index/index 也可以访问后台模块
前后台分离
1.public 下的文件index.php
// [ 应用入口文件 ]
// 定义应用目录
define('APP_PATH', __DIR__ . '/../application/');
// 绑定模块
define("BIND_MODULE",'index');
// 加载框架引导文件
require __DIR__ . '/../thinkphp/start.php';
绑定模块后只能找index模块,即前台模块 :测试
2.同在public下新建admin.php
// [ 应用入口文件 ]
// 定义应用目录
define('APP_PATH', __DIR__ . '/../application/');
// 绑定模块
define("BIND_MODULE",'admin');
// 加载框架引导文件
require __DIR__ . '/../thinkphp/start.php';
测试
127.0.0.1/tp5/public/index.php/admin/index/index 则再无法访问后台模块
各自配置入口后,前后台模块访问分离
前台 127.0.0.1/tp5/public/index.php/index/index
后台 127.0.0.1/tp5/public/admin.php/user/list