我怎样才能使 ServerAlias 工作?

我怎样才能使 ServerAlias 工作?

我有一台 Ubuntu 服务器阿帕奇2,我在这里主持一个小社区。这个域名是(作为示例)域名.tld。我尝试添加一个简单的 ServerAlias,允许用户附加 www 前缀,如下所示:www.域名.tld

我已阅读我能找到的所有文档,但仍无法使其发挥作用。

以下是 Apache 中的默认文件(与原始默认文件略有修改):

<VirtualHost *:80>
    ServerAdmin admin@localhost
    ServerName domain.tld
    ServerAlias www.domain.tld

    DocumentRoot /var/www
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/>
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

</VirtualHost>

非常感谢您对这个问题提供的任何帮助!

答案1

尝试这样设置....

ServerName   domain.tld
ServerAlias  www.domain.tld

ServerName 是“主”名称,ServerAlias 是您希望 vhost 响应的任何其他名称。

相关内容