2

我目前在 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

4

1 回答 1

0

您可以通过 .htaccess 使用重定向

Redirect http://sub.domain.tld http://domain.tld
于 2012-10-25T22:07:00.787 回答