gpt4 book ai didi

apache - 使用 VirtualHost ServerName 中的目录

转载 作者:行者123 更新时间:2023-12-02 08:08:45 28 4
gpt4 key购买 nike

我目前正在使用基于名称的虚拟主机配置,从同一 IP 地址为大约 5 个不同的网站提供服务器,就像 apache 文档中一样:

<VirtualHost *:80>
ServerName www.domain.tld
DocumentRoot /www/domain
</VirtualHost>

<VirtualHost *:80>
ServerName www.otherdomain.tld
DocumentRoot /www/otherdomain
</VirtualHost>

是否可以有类似的东西:

<VirtualHost *:80>
ServerName www.domain.tld/folderpath
DocumentRoot /www/software
</VirtualHost>

此文件夹中的网页使用不同的软件堆栈,我希望将其很好地分开。我尝试了上面的方法,但没有成功。

最佳答案

这不可能像你展示的那样 - VirtualHost 始终只是一个主机。但你可以使用 Alias .

<VirtualHost *:80>
ServerName www.domain.tld
DocumentRoot /www/domain

Alias /folderpath /www/software

</VirtualHost>

关于apache - 使用 VirtualHost ServerName 中的目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5552081/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com