监听所有请求 Tomcat
我使用 Tomcat 处理 HTML 文件,而不是 jsp 或其他文件。每个文件都是静态的(它们使用 JQuery)但是,当用户想要从我的网址导航时,我想检查授权,并且不想显示页面,如果未经授权,则重定向它们。
如何实施?
I am using Tomcat with HTML files not jsp or anyting else. Every file is static(they uses JQuery) However when a user wants to navigate from my urls I want to check for authorization and don't want to show pages redirect them if not authorized.
How to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用 HTML 是不可能做到的,您需要使用一些服务器端脚本来进行授权和重定向,
否则,
尝试在apache中使用
CGI脚本(通用网关接口)
来授权请求,,也可以使用
.htaccess
来授权用户并拒绝未经授权的请求,,That is not possible to do with just HTML, you need to make use of some server-side scripting to make the authorization and redirection,,
Otherwise,,
Try using
CGI Scripts(Common Gateway Interface)
in apache to authorize the requests,,Also you can make use of
.htaccess
to authorize the users and deny the unauthorized requests,,