thinkphp建站-前后台文件配置
时间: 2023-08-09 11:06:20 浏览: 184
thinkphp双语系统.zip
ThinkPHP 是一款基于 PHP 的开源 Web 应用框架,它的前后台文件配置如下:
1. 前台文件配置
前台文件一般位于 application 目录下的 home 模块中,可以在配置文件 config.php 中进行配置,例如:
```
// 默认模块名
'default_module' => 'home',
// 默认控制器名
'default_controller' => 'Index',
// 默认操作名
'default_action' => 'index',
```
2. 后台文件配置
后台文件一般位于 application 目录下的 admin 模块中,同样可以在 config.php 中进行配置,例如:
```
// 默认模块名
'default_module' => 'admin',
// 默认控制器名
'default_controller' => 'Index',
// 默认操作名
'default_action' => 'index',
```
需要注意的是,在进行前后台文件配置时,还需要配置路由规则,以保证访问正确的页面。
阅读全文