Theme editor



thxf.org

How To XenForo 2 Admin panel path change

thxf.org 

Administrator
Staff member
Admin
Thread owner
วิธีนี้เป็นการเปลี่ยนเส้นทางของไฟล์ admin.php ไม่ได้ยุ่งกับไฟล์ระบบครับ

แก้ไขไฟล์ src/config.php เพิ่มโค๊ดด้านล่างนี้ต่อไปครับ

PHP:
$c['router.admin.formatter'] = $c->wrap(function($route, $queryString)
{
   $suffix = $route . (strlen($queryString) ? '&' . $queryString : '');
   return strlen($suffix) ? 'not_admin.php?' . $suffix : 'not_admin.php';
});

ให้เปลี่ยนชื่อไฟล์ admin.php เป็นชื่อ not_admin.php หรือชื่อที่ต้องการครับ

(y)
 




Back
Top Bottom