Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个使用 JSP 编写的网页:
登录成功后,第一页用于登录
显示欢迎页面。
如果用户在没有登录的情况下从浏览器输入欢迎页面的 URL,我已经编写了一个代码来重定向到登录页面。
有什么方法可以让我从发生此重定向的欢迎页面的登录页面中获取 URL?
HTTP 标头“referer”似乎仅在用户单击链接时才有效。
编辑:我能想到的一种方法是在重定向时传递 url 中的参数,并将值作为欢迎页面。还有其他更好的方法吗?
任何帮助是极大的赞赏。
要找出原始页面是什么,请使用客户端重定向,例如:<script language="javascript">window.location='http://localhost:8000/Login/';</script>而不是您现在的方式。
<script language="javascript">window.location='http://localhost:8000/Login/';</script>