在我的 apache 配置中,我配置了一个虚拟主机,如下所示:
Alias /mediamanager /storage/files/mediamanager
<Directory /storage/files/mediamanager>
DirectoryIndex /mediaManagerIndex.php
DAV On
# ... And some authentication directives ... #
</Directory>
这个想法是有人可以通过WebDAV客户端和简单的Web浏览器访问文件,在这种情况下,PHP脚本会生成一些漂亮的目录视图。
这在Apache 2.2中效果很好,但是最近我升级到Apache 2.4,现在它坏了。我高度怀疑我患有这个已经存在 2 年并且看不到修复程序的错误。建议的解决方法是添加:
<Limit PROPFIND>
DirectoryIndex never-encounterable-file-name.html
</Limit>
对我不起作用。可能是因为我仍然想要一个目录索引。如果我完全删除我的DirectoryIndex
WebDAV 会再次工作(此目录中不存在索引.html或类似文件),但当然我失去了将我的 PHP 文件用作目录索引的能力。我试图在<Limit GET>
中指定我的目录索引,但这没有效果。
有没有办法让 DAV 和 DirectoryIndex 在 Debian 上的 Apache 2.4 中同时工作(如果可能的话,无需更改源代码和重新编译)?
为了解决此问题,请禁用 WebDAV 站点的目录索引。
在您的 sites-available/site.conf 文件中,将DirectoryIndex disabled
添加到 <Directory>
声明中,如下所示:
<Directory /path/to/my/webdav/dir>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require all granted
DirectoryIndex disabled
</Directory>
然后只需重新加载 Apache,您将不再遇到该问题:
sudo service apache2 reload
对我来说,以下配置解决了这两个问题:
- WebDAV 再次工作
- 目录索引(如果用户使用 Web 浏览器访问存储库)
它的工作原理是使用简单的重写规则手动实现目录索引功能,这些规则仅适用于GET
请求方法。
以下代码必须放置在 apache 配置文件的服务器配置或虚拟主机上下文中。
# Turn off (automatic) Directory-Indexing
DirectoryIndex disabled
RewriteEngine On
# Rewrite rules for the root directory
RewriteCond "%{REQUEST_METHOD}" "(GET)"
RewriteRule "^/$" "/index.php" [L]
# Rewrite rules for other sub-directories
RewriteCond "%{REQUEST_METHOD}" "(GET)"
# The following line checks, if the index.php file exists
RewriteCond "%{DOCUMENT_ROOT}/$1/index.php" "-f"
RewriteRule "^/(.*)/$" "/$1/index.php" [L]
不要忘记重新加载阿帕奇!
目前正在使用的解决方案,位于WebDav服务使用的目录树根目录下的.htaccess
文件中。在这种情况下,我不使用 PHP,只使用 html 文件,但它可以很容易地适应:
# Turn off automatic directory indexing
Options -Indexes
DirectoryIndex disabled
# Redirect directory requests to index.html, only for GET requests
RewriteEngine On
RewriteCond %{REQUEST_METHOD} "GET"
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*)$ $1index.html [L]
为了始终启动请求的 PHP 文件,只需将最后一行的"index.html"替换为 PHP 文件名:
RewriteRule ^(.*)$ $1mediaManagerIndex.php [L]