我试图拒绝访问使用OpenLiteSpeed v1.4.2托管的网站的文件夹,但我遇到了麻烦。我认为.htaccess
OpenLiteSpeed 不支持它,因此我无法将其中的文件放入.htaccess
文件Deny From All
夹中。
假设我要隐藏的文件夹的绝对路径是/usr/local/lsws/Example/html/hideme
. 我尝试将以下内容放入 OpenLiteSpeed 面板中虚拟主机的重写规则中,但没有运气:
<Directory ~/hideme>
Deny from all
</Directory>
<Directory ~/hideme/(.*)$>
Deny from all
</Directory>
<Directory /usr/local/lsws/Example/html/hideme>
Deny from all
</Directory>
有谁知道我可能做错了什么以及如何拒绝访问此文件夹?