配置 apache 以加载特定端口的特殊文件夹

配置 apache 以加载特定端口的特殊文件夹

如何配置 Apache 使用特殊端口时加载特殊文件夹?

文档根目录是:www\
现在我想要在输入URLwww\folder\时加载。http://localhost:8090/

我想我应该创建一个虚拟主机。但不知道如何配置它。

答案1

是的,你自己回答了。这是一个通用配置

Server configuration

# Ensure that Apache listens on port 80
Listen 80

# Listen for virtual host requests on all IP addresses
NameVirtualHost *:80

<VirtualHost *:80>
DocumentRoot /www
ServerName www.example1.com

# Other directives here

</VirtualHost>

<VirtualHost *:8090>
DocumentRoot /www/folder
ServerName www.example2.org

# Other directives here

</VirtualHost>

我正在考虑将 www.example2.org 和 www.example1.com 指向 127.0.0.1 即 localhost

相关内容