[更新]修改路由配置

This commit is contained in:
Anyon 2019-07-03 15:26:11 +08:00
parent 6fd8a9586b
commit 423d324135
2 changed files with 43 additions and 43 deletions

View File

@ -9,14 +9,13 @@
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// | github开源项目https://github.com/zoujingli/framework
// +----------------------------------------------------------------------
use think\facade\Route;
return [];
/* 测试环境禁止操作路由绑定 */
if (in_array(request()->rootDomain(), ['ctolog.com', 'thinkadmin.top'])) {
Route::post('admin/user/pass', function () {
return json(['code' => 0, 'info' => '测试环境禁修改用户密码!']);
});
@ -56,3 +55,4 @@ Route::post('wechat/config/options', function () {
Route::post('service/config/index', function () {
return json(['code' => 0, 'info' => '测试环境禁止修改微信配置操作!']);
});
}