1.在站点跟目录新建一个目录,目录名自定,例如manage,这个manage目录就是今后你登陆后台需要访问路径。
2.在manage目录里新建一个index.php文件,代码如下:
<?php define('PHPCMS_PATH', realpath(dirname(__FILE__) . '/..') . '/'); include '../phpcms/base.php'; $session_storage = 'session_' . pc_base :: load_config('system', 'session_storage'); pc_base :: load_sys_class($session_storage); session_start(); $_SESSION['right_enter'] = 1; unset($session_storage); header('location:../index.php?m=admin&c=index&a=login&pc_hash='); ?>
3.找到\phpcms\modules\admin目录,在这个目录中新建一个名为MY_index.php的文件,代码如下:
<?php defined('IN_PHPCMS') or exit('No permission resources.'); class MY_index extends index { public function __construct() { if(empty($_SESSION['right_enter'])) { header('location:./'); exit(); } parent::__construct(); } public function public_logout() { $_SESSION['right_enter'] = 0; parent::public_logout(); } } ?>
最后,将上面新建的目录和文件上传至服务器对应的路径后,你的PHPCMS站点就只能通过http://www.xxx.com/manage/这样的地址访问后台的登录入口了。
备注:上述方法仅针对PHPCMS V9版。