Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用通配符将请求发送到任何 sobdomains 到域的文件夹。请指定如何在 apache2 中使用虚拟主机设置实现此目的。域及其子域使用相同的 IP 地址。子域无法预先确定,因为它们是由用户创建的。
谢谢
这个配置怎么样
<VirtualHost *.domain.com:80> ServerAdmin admin@domain.com DocumentRoot /var/www/domain ServerName domain.com ServerAlias domain.com *.domain.com </VirtualHost>