ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 27,559
- Points
- 823
Reputation:
ENXF NET submitted a new resource:
XenForo 2 Admin panel path change - XenForo 2 Admin panel path change
Read more about this resource...
XenForo 2 Admin panel path change - XenForo 2 Admin panel path change
There'll be a few templates to change, I think, for those places which link directly to admin.php, but the change to the routing formatter itself can be done without changing any core files in XF2.
Just add the following to your src/config.php file:
...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'; });
Read more about this resource...