Apache .htaccess密码保护与相对路径

时间:2022-09-16 23:01:46

I want to create a .htaccess file in my DocumentRoot, so that the directory is password protected.

我想在DocumentRoot中创建一个.htaccess文件,以便该目录受密码保护。

But the password file, I want to specify by using the relative path of DocumentRoot.

但密码文件,我想通过使用DocumentRoot的相对路径来指定。

So, if I am checking out the code in another system, it just works as it is. The password file will be part of my source control.

所以,如果我在另一个系统中检查代码,它就会按原样运行。密码文件将是我的源代码管理的一部分。

How can I access the parent directory of the DocumentRoot from .htaccess file?

如何从.htaccess文件访问DocumentRoot的父目录?

2 个解决方案

#1


7  

I don’t think that’s possible. The AuthUserFile directive requires the file-path to be either absolute (thus from file system root) or relative from the server root.

我不认为这是可能的。 AuthUserFile指令要求文件路径是绝对的(因此来自文件系统根目录)或来自服务器根目录的相对路径。

#2


6  

The AuthUserFile paths are relative to the server root (/etc/apache2/ on Debian), or absolute.

AuthUserFile路径是相对于服务器根目录(Debian上的/ etc / apache2 /)或绝对路径。

To take care of different servers, you can use IfDefine directives with different variables on each server - see my blog post about that.

要处理不同的服务器,可以在每台服务器上使用带有不同变量的IfDefine指令 - 请参阅我的博客文章。

#1


7  

I don’t think that’s possible. The AuthUserFile directive requires the file-path to be either absolute (thus from file system root) or relative from the server root.

我不认为这是可能的。 AuthUserFile指令要求文件路径是绝对的(因此来自文件系统根目录)或来自服务器根目录的相对路径。

#2


6  

The AuthUserFile paths are relative to the server root (/etc/apache2/ on Debian), or absolute.

AuthUserFile路径是相对于服务器根目录(Debian上的/ etc / apache2 /)或绝对路径。

To take care of different servers, you can use IfDefine directives with different variables on each server - see my blog post about that.

要处理不同的服务器,可以在每台服务器上使用带有不同变量的IfDefine指令 - 请参阅我的博客文章。