403子目录上的错误虚拟主机

时间:2014-03-02 22:42:47

标签: apache apache2 debian virtualhost digital-ocean

我正在尝试在DigitalOcean Debian Droplet上设置虚拟主机。使用这些设置,域将转到正确的位置。但是,我的网站中存在断开的链接,当我尝试导航到http://ndunn.co.uk/icons时,我收到403错误。好像这会影响子目录,但我无法确定。有人能帮忙吗?

这就是/etc/apache2/sites-available/ndunn.co.uk的内容:

<VirtualHost *:80>
        ServerAdmin webmaster@localhost
        ServerName ndunn.co.uk
        ServerAlias www.ndunn.co.uk 
        DocumentRoot /var/www/ndunn.co.uk/public_html
        <Directory />
                Options FollowSymLinks
                AllowOverride None
                Allow from all
        </Directory>
        <Directory /var/www/ndunn.co.uk/public_html>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                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 
</VirtualHost>

1 个答案:

答案 0 :(得分:0)

尝试在此行添加双引号:

<Directory "/var/www/ndunn.co.uk/public_html">

更新:问题可能是配置文件的位置 来自debian's doc

  

启动站点的目录中的每个配置文件都在服务器启动时加载 - 而站点中的文件 - 可用完全被忽略。

所以你应该把你的配置文件放在/etc/apache2/sites-enabled/ndunn.co.uk