监听所有请求 Tomcat

发布于 2024-12-03 12:49:37 字数 126 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野生奥特曼 2024-12-10 12:49:37

仅使用 HTML 是不可能做到的,您需要使用一些服务器端脚本来进行授权和重定向,

否则,
尝试在apache中使用CGI脚本(通用网关接口)来授权请求​​,,

也可以使用.htaccess来授权用户并拒绝未经授权的请求,,

.htaccess 和 CGI​​ 的组合可以完成您的工作
需要在没有服务器端脚本的情况下完成,,

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,,

A combination of both .htaccess and CGI can accomplish the work you
need to be done without the Server-side scripting,,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文