将虚拟文件夹添加到 Apache,就像在 htdocs 文件夹中一样

将虚拟文件夹添加到 Apache,就像在 htdocs 文件夹中一样

我希望能够127.0.0.1/multimedia/any_file.ext像 htdocs 中的任何其他文件夹一样访问并查看它。以下是我在配置中尝试的内容:

Alias "multimedia" "F://public_vids/"
<Directory "F://public_vids/">
  Options +Indexes
    Order allow,deny
    Allow from all
</Directory>

我已经阅读了 Apache 网站上的文档但无法使其发挥作用。

答案1

您需要指定相对于 Web 根目录的路径;即:

Alias /multimedia F://public_vids

我听说引号可能会弄乱某些 Apache 配置设置,因此我会尝试从 Alias 指令中删除它们,以防万一。如果其他方法都失败了,请尝试从 Apache 访问和错误日​​志中发布相关行。

相关内容