我有一个 URL,用户可以使用它访问我的 jsp Web 应用程序
http://testerpages.com/testpage/menu1?userId=27
我如何向用户隐藏 userID=27 并显示类似的 url
http://testerpages.com/testpage/menu1
有什么方法可以隐藏用户的参数,或者我们可以忽略 id,但是如果我们在 url 中直接向前端用户显示 id 参数,就会对安全造成威胁
我使用这个页面调用
<a href="#" onclick="goToURL('${param.userId}','${contextPath}/menu1?userId=')">Menu1</a>