Hi. I have two *.jsp files (first.jsp and second.jsp) in the same directory and I need redirect to second.jsp from first.jsp. I try "forward()" and "sendRedirect()" methods.
I get this error message.
Tell me please, what's wrong? I use tomcat 4.0.3. Thank You. [ July 10, 2002: Message edited by: dajac chison ]
chanoch wiggers
Author
Ranch Hand
Joined: May 24, 2001
Posts: 245
posted
0
if you are doing this within a web application, putting the / before the name of the name of the page will redirect it to look in the ROOT directory, so the browser will be looking at http://localhost/index1.jsp even though you have loaded http://localhost/myapp/index2.jsp try removing the forward slash
chanoch<p><a href="http://www.amazon.com/exec/obidos/ASIN/1861007736/" target="_blank" rel="nofollow">Author of Professional Apache Tomcat</a></p>