AbanteCart Community

eCommerce construction => General Discussion => Topic started by: flyn on December 26, 2014, 08:05:27 AM

Title: Access Admin Alternative
Post by: flyn on December 26, 2014, 08:05:27 AM
Hello is it possible to access the admin instead of using http://".com"/index.php?rt=index/login&s=HY_admin

Using another path?
Title: Re: Access Admin Alternative
Post by: abantecart on December 26, 2014, 10:39:54 AM
You can create .htaccess rewrite rule for this.

You can make the url look like this
http://[domain]/[secret_admin]

Rewrite rule will look like this:
Code: [Select]
RewriteEngine On
RewriteRule ^secret_admin$ /index.php?rt=index/login&s=HY_admin  [R=301,QSA,L]

NOTE: This is an example rule. You need to adjust it to your specific settings.