I'm trying to follow the instructions on http://www.4webhelp.net/tutorials/misc/htaccess.php in order to create a password file placed outside of the web root and use it in conjunction with .htaccess. The problem I can't solve here is that the AuthUserFile
info in .htaccess is supposed to be an absolute path to the server root. I am using a server provided by a web hosting company and I found using <?php echo $_SERVER['DOCUMENT_ROOT']; ?>
that the complete path to my web root looks something like /mumbo/jumbo/my_site/public_html
where /mumbo/jumbo/
is stuff determined by the web host and, importantly, subject to change without notice.
In PHP I can of course generate a path that always is correct using $_SERVER['DOCUMENT_ROOT']
. But .htaccess is not written in PHP. Is there a similar way to obtain the server root path upstream of the web root dynamically using the syntax of .htaccess?
From the manual:
File-path is the path to the user file. If it is not absolute, it is treated as relative to the ServerRoot.
You should give either an absolute path or a relative one to the server root. Neither would solve your problem.