RES: how to get rid of the path after the URL

2007-12-28 Thread siomara
Let me see if I understood: 'jiveforums' is the name of the folder where ur application is inside webapps folder, right? Tomcat is a webapplication designed to run LOTS of applications. Each one must be inside of a folder inside webapps. So far you did it correct because you created your

Re: RES: how to get rid of the path after the URL

2007-12-28 Thread Mark Thomas
[EMAIL PROTECTED] wrote: In order to do what you want you would have to drag and drop all the files inside 'jiveforums' to the folder on top of it, wich is 'webapps' ( which is NOT recommended). No, no, no. This is completely, totally and utterly wrong. It isn't just not recommended, it won't

RES: how to get rid of the path after the URL

2007-12-28 Thread siomara
Pavel, the default.jsp is either a index.html or index.jsp file. sio -Mensagem original- De: Pavel Pragin [mailto:[EMAIL PROTECTED] Enviada em: sexta-feira, 28 de dezembro de 2007 17:08 Para: Tomcat Users List Assunto: RE: how to get rid of the path after the URL Hello, I wasn't able

RE: RES: how to get rid of the path after the URL

2007-12-28 Thread Pavel Pragin
Hello, Do you meet ROOT literaly? thanks -Original Message- From: Mark Thomas [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: 12/28/07 11:09 AM Subject: Re: RES: how to get rid of the path after the URL [EMAIL PROTECTED] wrote: In order to do what you want you

Re: RES: how to get rid of the path after the URL

2007-12-28 Thread Rainer Jung
Pavel Pragin schrieb: Hello, Do you meet ROOT literaly? Yes. All URLs that do not map to any context deployed by it's name will be mapped to the special context named ROOT. thanks -Original Message- From: Mark Thomas [EMAIL PROTECTED] To: Tomcat Users List

RE: RES: how to get rid of the path after the URL

2007-12-28 Thread Pavel Pragin
Hello, You guys are great I will try this shortly. thanks -Original Message- From: Rainer Jung [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: 12/28/07 11:40 AM Subject: Re: RES: how to get rid of the path after the URL Pavel Pragin schrieb: Hello, Do you meet

RES: RES: how to get rid of the path after the URL

2007-12-28 Thread siomara
That's right Pavel. Mark is correct. It's been a while that I am being forced to develop in this crap php language that I forgot that tomcat main application is not under webapps. It's under a ROOT folder. So rename ROOT to ROOTSomething create a ROOT folder. Place your application on it. Let