Fix for admin redirect
This commit is contained in:
parent
98464b2a10
commit
d5f27da946
|
@ -6,7 +6,7 @@ AddDefaultCharset UTF-8
|
||||||
RewriteEngine on
|
RewriteEngine on
|
||||||
|
|
||||||
# Base directory
|
# Base directory
|
||||||
# RewriteBase /
|
RewriteBase /
|
||||||
|
|
||||||
# Deny direct access to the next directories
|
# Deny direct access to the next directories
|
||||||
RewriteRule ^bl-content/(databases|workspaces|pages|tmp|)/.*$ - [R=404,L]
|
RewriteRule ^bl-content/(databases|workspaces|pages|tmp|)/.*$ - [R=404,L]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php defined('BLUDIT') or die('Bludit CMS.');
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
||||||
|
|
||||||
// Redirect admin, from /admin to /admin/
|
// Redirect admin, from /admin to /admin/
|
||||||
if ($url->uri()=='/'.ADMIN_URI_FILTER) {
|
if ($url->uri()==HTML_PATH_ROOT.ADMIN_URI_FILTER) {
|
||||||
Redirect::url(DOMAIN_ADMIN);
|
Redirect::url(DOMAIN_ADMIN);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue