姜戈。限制页面访问
我有一些自定义错误页面和视图。如何限制直接从浏览器访问此页面,因此如果用户输入地址字符串“somesite/some_error”,他将无法访问此页面。仅当发生某些错误时才应显示。
I have some custom error pages and views for them. How can I restrict access to this pages from browser directly, so if user type in address string "somesite/some_error" he won't get this page. It should be showed only when some error occurred.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与其禁止访问,不如简单渲染一下你想要显示的错误页面吧?也就是说,不是
您现在所做的,
而是这样做,您没有明确的网址,但您确实将信息传递给用户。
Instead of prohibiting access, can't you simple render the error page you want to display? That is, instead of the
you do now, do a
That way you don't have explicit urls, but you do get the information out to the user.