DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3839>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3839 Problem bookmarking login page [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED ------- Additional Comments From [EMAIL PROTECTED] 2002-06-11 20:06 ------- Add this to the beginning of your login page: <% if (request.getHeader("Referer") == null) { response.sendRedirect("index.jsp"); } %> Replacing "index.jsp" with whatever URL you feel you want to have your connection redirected to... For example, if "index.jsp" is one of several "protected" resources, then if your users bookmark the login page, what will happen is that when your users use the bookmark, they won't have a referer, not having a referer they will be redirected to what you think it is their "default" page (after they have logged in), this (since they're not logged in) will trigger a redirect again to the login page... -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
