mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update demo.php
This commit is contained in:
parent
31b9d90441
commit
c1e65acc2e
@ -13,10 +13,12 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
use think\facade\Request;
|
||||||
use think\facade\Route;
|
use think\facade\Route;
|
||||||
|
|
||||||
/* 演示环境禁止操作路由绑定 */
|
/* 演示环境禁止操作路由绑定 */
|
||||||
if (in_array(request()->rootDomain(), ['ctolog.com', 'thinkadmin.top'])) {
|
$domain = Request::host(true);
|
||||||
|
if (in_array($domain, ['127.0.0.1', 'localhost']) or stripos($domain, 'thinkadmin.top') <> false) {
|
||||||
Route::post('admin/user/pass', function () {
|
Route::post('admin/user/pass', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user