.htaccess would be the way to go. Another way you could do it is by having a index.php that checks your User Agent (there are firefox plugins that let you spoof your user agent to be anything) to be "XXX", and if not, it redirects you to another page.
So you could have something like
PHP Code:
if ($_SERVER['HTTP_USER_AGENT'] != "adminOnlyUserAgent") {
header( 'Location: www.site.com/blabla/' );
}
Firefox User Agent Switcher Plugin:
https://addons.mozilla.org/en-US/fir...=firefox&id=59
Safari/Firefox Configuration User Agent Spoof:
http://www.rubyrobot.org/article/spo...ari-or-firefox