修改后台入口配置

请先更新 ThinkLibrary 再更新 Admin 模块
This commit is contained in:
Anyon 2020-10-29 11:09:23 +08:00
parent bc819f5554
commit 07a197f7b6
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ class Config extends Controller
$this->fetch();
} else {
if ($xpath = $this->request->post('xpath')) {
if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]+$/', $xpath)) {
if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $xpath)) {
$this->error('后台入口名称需要是由英文字母开头!');
}
if ($xpath !== 'admin' && file_exists($this->app->getBasePath() . $xpath)) {

View File

@ -5,7 +5,7 @@
<span class="color-desc margin-left-5">Login</span>
<label class="layui-input relative block label-required-null">
<span>{:sysuri('@',[],false,true)}</span>
<input autofocus required pattern="[a-zA-Z_][a-zA-Z0-9_]+" placeholder="请输入后台登录入口" class="layui-input inline-block padding-0 border-0" style="width:auto;background:none" value="{:trim(sysuri('admin/index/index',[],false),'/')}" name="xpath">
<input autofocus required pattern="[a-zA-Z_][a-zA-Z0-9_]*" placeholder="请输入后台登录入口" class="layui-input inline-block padding-0 border-0" style="width:auto;background:none" value="{:trim(sysuri('admin/index/index',[],false),'/')}" name="xpath">
</label>
<span class="help-block">名称由英文字母开头且不能存在相同名称的应用,设置之后原地址不能继续访问!</span>
</div>