我在我的 Ubuntu 12.04 上安装了 Apache 2,并且使用 mysite 配置的 Chang 站点是
<VirtualHost *:80>
ServerAdmin sanjeet.jha@logicalindia.com
DocumentRoot /data-sml/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /data-sml/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 ${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
</VirtualHost>
之后通过使用启用 mysite
sudo a2ensite mysite
sudo service apache2 restart
但它显示
禁止的
您无权访问此服务器上的 /。
请帮助我。