ubuntu 14.04 LTS + apache2 配置的时候需要复制的是 000-default.conf文件,之后对每个文件都进行配置之后在sites-enabled中建立链接。此时会遇到403不允许访问的错误。这个时候需要在复制的文件中(如我自己的tian.conf文件)添加
<Directory /var/wwwroot/tian>
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<Directory /var/wwwroot/tian>
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
2015-07-04