0

嗨,我正在使用 ubuntu 作为我的虚拟主机的服务器操作系统,但我在将我的域名重定向到我的服务器时遇到问题这是我的 /etc/hosts 文件和 /etc/apache2/sites-available/mysite 文件。

主机文件:

127.0.0.1 www.lowkey.se

以下行对于支持 IPv6 的主机是可取的

::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters

网站可用/文件:

ServerAdmin webmaster@localhost 服务器名 www.lowkey.se

DocumentRoot /var/www/doost/
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /var/www/doost/>
    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 ${APACHE_LOG_DIR}/error.log

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

CustomLog ${APACHE_LOG_DIR}/access.log combined

以及来自我的域名提供商的屏幕截图:

在此处输入图像描述

我究竟做错了什么?

4

1 回答 1

1

请在您的 Apache 配置中添加以下三行注释,然后重新启动 Apache:

DocumentRoot /var/www/doost/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

如需评论,请按如下方式替换它们:

#DocumentRoot /var/www/doost/
#ErrorLog ${APACHE_LOG_DIR}/error.log
#CustomLog ${APACHE_LOG_DIR}/access.log combined
于 2012-11-22T05:30:00.027 回答