Discuz version
Discuz X3.4
List
Change Header -Power By Discuz
- Enter the directory
/template/default/commonand findheader_common.htm文件 - Just change
-Power By Discuzinsidetitleto what you want - save refresh
Do not allow non-administrators to access admin.php
- Find admin.php in the website root directory and edit it
- Find
$admincp->core = & $discuz;and enter the following code after a new line - After saving and refreshing, non-administrator users will jump directly to the root directory.
if(!$_G['uid'] || !getstatus($_G['member']['allowadmincp'], 1)) {
header('Location: /');
}