HTTP 403 错误是什么意思?
我正在使用 JSF 2.0、Eclipse indigo、Tomcat 7。 我收到此错误,但在控制台上看不到任何内容。 我正在开发一个由其他人构建的项目,并且 web.xml
中有一些行。
<error-page>
<error-code>403</error-code>
<location>/error/error403.jsf</location>
</error-page>
可能是什么问题?
I am using JSF 2.0, Eclipse indigo, Tomcat 7.
I am getting this error but can see nothing on console.
I am working on a project that is built some one else, and there are lines in web.xml
.
<error-page>
<error-code>403</error-code>
<location>/error/error403.jsf</location>
</error-page>
What might the problem be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTTP 403 Forbidden 错误意味着没有人 被授权请求给定的 URL。不同的凭据也无济于事(这与 HTTP 401 Unauthorized 的区别错误)。当您尝试打开网络服务器上的文件夹并试图获取包含文件列表的目录索引时,您经常会看到此错误,但服务器已禁用它并且没有索引(欢迎)文件。
请注意,这与 JSF 无关。
A HTTP 403 Forbidden error means that nobody is authorized to request the given URL. Different credentials also won't help (that's the difference with HTTP 401 Unauthorized error). You see this error often when you attempt to open a folder on the webserver with the intention to get a directory index with a list of files, but the server has it disabled and there is no index (welcome) file.
Note that this is unrelated to JSF.