Help to solve this problem in jsp

Iam working in a project which contains weblogs like

www.myspace.com

if given like www.url.com/username then it automatically goes to the

users profile page but If I given like that then the browser try to check

for the folder named given username and gives 404 error so please

let me know how to achieve it.

regards

Tiger

[375 byte] By [schooltiger@walla.coma] at [2007-11-26 16:32:31]
# 1
You can implement 302 redirection. There are many ways to do it one way is to create a JSP file, pass the destination URL to it and then using JSTL c:redirect tag you can redirection to any URL.
appy77a at 2007-7-8 22:57:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
You can create a front controller servlet and then use HttpRequestDispatcher.
beradriana at 2007-7-8 22:57:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...