index.php

$admin_cookie_code="1234567890";
setcookie("JoomlaAdminSession",$admin_cookie_code,0,"/");
header("Location: /administrator/index.php");

.htaccess file

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/administrator
RewriteCond %{HTTP_COOKIE} !JoomlaAdminSession=1234567890
RewriteRule .* - [L,F]

i used this code but it's not working... page will be redirect to administrator but www.domain.com/administrator is also accessable

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

http://extensions.joomla.org/extensions/access-a-security/site-security/login-protection

you can use this protect your admin login. this is really esay and nice extension.

link|improve this answer
thnx 2 help me himanshu – KiNG H Feb 18 at 6:50
feedback

Are you trying to hide the administrator URL ? Here is what I'm using : http://extensions.joomla.org/extensions/access-a-security/site-security/login-protection/15711

You can find more extensions here : http://extensions.joomla.org/extensions/access-a-security/site-security/login-protection

link|improve this answer
yse but i want to hide that is programetically.... – KiNG H Jan 27 at 12:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.