【发布时间】:2012-10-25 21:12:39
【问题描述】:
我目前在 apache 上有一个通配符子域:
<VirtualHost xxx.xxx.xxx.xxx:80>
DocumentRoot /home/web/domaine.tld/www
ServerName domaine.tld
ServerAlias *.domaine.tld
VirtualDocumentRoot /home/web/domaine.tld/%1
CustomLog /var/log/apache2/domaine.tld/access.log combined
ErrorLog /var/log/apache2/domaine.tld/error.log
</VirtualHost>
并且需要将任何子域(如 sub.domain.tld)重定向到 domain.tld
【问题讨论】:
标签: apache apache2 subdomain wildcard-subdomain