我已经设置了 Apache Web 服务器,并且拥有一个域名。我还安装了数据库和 PHP,因此我还使用 PHPMyAdmin 作为数据库管理软件。现在,我想将 PMA 放在 webroot 之外,以确保其安全。
PMA 目录:C:\wwwSoft\pma
网站根目录:D:\wwwNet
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "C:/wwwSoft/pma"
ServerName db.something.nl
ServerAlias www.db.something.nl
ErrorLog "logs/db.something.nl-error.log"
CustomLog "logs/db.something.nl-access.log" common
<Directory C:/wwwSoft/pma>
Order Allow,Deny
Allow from all
Options Indexes FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>
现在,问题是当我访问时出现此错误http://db.something.nl/:You don't have permission to access / on this server.
我相信我已经设置好了一切,但显然我犯了错误,有人可以帮帮我吗?