Re: Auto Generated URLs

2006-03-11 Thread Laurie Harper
Jeff Thorne wrote: I have noticed that many sites use virtual URLs such as http://www.imdb.com/title/tt0244244/ to point to some sort of profile on their website whether it be a movie, product, or user homepage. I was wondering what is the most efficient way to accomplish this programmaticall

Re: Auto Generated URLs

2006-03-11 Thread Yu-Wei Chang
Using a URLWrite is the most easy way. You can use Apache mod_rewrite or UrlRewriteFilter for any J2EE compliant web application server. Apache mod_rewrite: http://httpd.apache.org/docs/2.0/misc/rewriteguide.html UrlRewriteFilter https://urlrewrite.dev.java.net/ > 2006/3/12, Jeff Thorne <[EMAIL

Re: Auto Generated URLs

2006-03-11 Thread Leon Rosenberg
I think the most easy ways are: use a servlet which maps to title and evaluate the last part of the path use a filter which does the same but maps the last part of the path to a parameter evaluate by the action later. regards leon On 3/11/06, Jeff Thorne <[EMAIL PROTECTED]> wrote: > I have notice