我是新手。 我们昨晚进行了系统扫描。但是,在扫描期间,系统已关闭,我们在访问Web时面临403禁止错误。
请协助我检查的方式和地点。
版本:Apache / 2.4.7(Ubuntu) Ubuntu 4.2
应用程序在所有这些工作正常,并且没有在服务器上进行任何更改。
非常感谢你对此的帮助。
谢谢你!这是配置文件以获得进一步的帮助:
/etc/apache2/apache.conf
<Directory />
Options FollowSymLinks
AllowOverride None
# Require all denied
Require all granted
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
/etc/apache2/sites-available/000-default.conf
<Directory "/var/www/html">
Options All
AllowOverride All
Require all granted
</Directory>
答案 0 :(得分:0)
由于您已经在问题中添加了一些配置文件,因此应该避免使用扩展注释(并且您没有移动到聊天所需的20个声誉)下面的建议:添加您的.htaccess,也许这是有帮助的:Apache2: 'AH01630: client denied by server configuration'
此外,如果您打开(取决于您的浏览器和开发工具),它可能会有所帮助,例如Firebug Net Panel用于检查当您调用站点的URL时会发生什么 - 如果403直接发生或者是否存在任何类型的重定向。也可以帮助在shell /命令提示符中跟踪地址,看看发生了什么。