Re: Search engine friendly URLs

2004-10-02 Thread Dov Rosenberg
Use URL Rewriting with Apache. That will do what you are looking for. On 10/2/04 11:53 AM, "Ben" <[EMAIL PROTECTED]> wrote: > Hi > > Is it possible to make the URLs on my site search engine friendly? I > am using Tomcat and Struts. > > I would like to turn: > > http://localhost/site.do?secti

Re: Search engine friendly URLs

2004-10-02 Thread Ben
I would like to use Tomcat alone On Sat, 02 Oct 2004 19:37:35 -0400, Dov Rosenberg <[EMAIL PROTECTED]> wrote: > Use URL Rewriting with Apache. That will do what you are looking for. > > > > > On 10/2/04 11:53 AM, "Ben" <[EMAIL PROTECTED]> wrote: > > > Hi > > > > Is it possible to make the UR

Re: Search engine friendly URLs

2004-10-03 Thread Andrea Polci
On Sun, 3 Oct 2004 09:59:36 +1000, Ben <[EMAIL PROTECTED]> wrote: > I would like to use Tomcat alone In your web.xml use this mapping: - MyServlet /do/* - If you request the url "http://localhost/do/site/books/

Re: Search engine friendly URLs

2004-10-03 Thread Andrea Polci
Sorry, I've sent the message wile I was still writing. On Sun, 3 Oct 2004 09:59:36 +1000, Ben <[EMAIL PROTECTED]> wrote: > I would like to use Tomcat alone In your web.xml use this mapping: - MyServlet /do/* - If

Re: Search engine friendly URLs

2004-10-03 Thread Dov Rosenberg
If you want to be able to scale your application, you need to be able to move the static image handling out of tomcat to a separate web server. Using Tomcat to handle both application chores and web serving chores will limit the overall scalability of your system. Short of passing parameters as se

AW: Search engine friendly URLs

2004-10-03 Thread Steffen Heil
Hi > If you want to be able to scale your application, you need to be able to move the static image handling out of tomcat to a separate web server. Using Tomcat to handle both application chores and web serving chores will limit the overall scalability of your system. I strongly disagree. Tomcat

RE: Search engine friendly URLs

2004-10-04 Thread Shapira, Yoav
nal Message- >From: Steffen Heil [mailto:[EMAIL PROTECTED] >Sent: Sunday, October 03, 2004 11:18 AM >To: 'Tomcat Users List' >Subject: AW: Search engine friendly URLs > >Hi > >> If you want to be able to scale your application, you need to be able to >move

Re: Search engine friendly URLs

2004-10-04 Thread Ben
age- > >From: Steffen Heil [mailto:[EMAIL PROTECTED] > >Sent: Sunday, October 03, 2004 11:18 AM > >To: 'Tomcat Users List' > >Subject: AW: Search engine friendly URLs > > > >Hi > > > >> If you want to be able to scale your application, y

Re: Search engine friendly URLs

2004-10-05 Thread Mark Lowe
separate servlet and any associated session overhead, so the performance argument is even more moot. Yoav Shapira Millennium Research Informatics -Original Message- From: Steffen Heil [mailto:[EMAIL PROTECTED] Sent: Sunday, October 03, 2004 11:18 AM To: 'Tomcat Users List' Subje

Re: Search engine friendly URLs

2004-10-05 Thread Mark Lowe
wrote: Hi, You can also do this with one (or more, if you want, depending on the exact requirements) Filters. That prevents the need for a separate servlet and any associated session overhead, so the performance argument is even more moot. Yoav Shapira Millennium Research Informatics -Origi

Re: AW: Search engine friendly URLs

2004-10-03 Thread Dov Rosenberg
When I suggested using Apache I implied that Apache would be on a separate physical server. If possible even dynamic content can have static images that can be served up using Apache. Our application tracks references to the dynamic images that are stored in an application managed directory structu