禁止:您没有权限访问服务器上的/
Forbidden: You don't have permission to access / on the server
这是我尝试从 phone 访问 PC 时遇到的错误。
在您的 apache.conf 文件中
<Directory "/var/www/html/yourwebroot">
AllowOverride All
Allow from all
Require all granted
</Directory>
并重新启动您的 apache2 服务器
访问控制配置在 2.4 中发生了变化,如果没有一些变化,旧配置将不兼容。参见 here。
如果您的旧配置是“Allow from all”(没有 IP 地址被阻止访问该服务),那么“Require all granted”是新的功能等价物。
这是我尝试从 phone 访问 PC 时遇到的错误。
在您的 apache.conf 文件中
<Directory "/var/www/html/yourwebroot">
AllowOverride All
Allow from all
Require all granted
</Directory>
并重新启动您的 apache2 服务器
访问控制配置在 2.4 中发生了变化,如果没有一些变化,旧配置将不兼容。参见 here。
如果您的旧配置是“Allow from all”(没有 IP 地址被阻止访问该服务),那么“Require all granted”是新的功能等价物。