Hi,
I have a struts based web application.
How can I hide the technology being used from the url.
basicall, I would like to have the application do all the work without the url having to change.(ex: http://mydomain.com/myapp)
Thanks
-
URL Question (2 messages)
- Posted by: ahmed tantan
- Posted on: September 04 2003 13:27 EDT
Threaded Messages (2)
- URL Question by stephen smithstone on September 04 2003 14:49 EDT
- URL Question by ahmed tantan on September 11 2003 18:07 EDT
-
URL Question[ Go to top ]
- Posted by: stephen smithstone
- Posted on: September 04 2003 14:49 EDT
- in response to ahmed tantan
Hi,
>
> I have a struts based web application.
> How can I hide the technology being used from the url.
> basicall, I would like to have the application do all the work without the url having to change.(ex: http://mydomain.com/myapp)
>
> Thanks
in your actions create an action forward
ActionForward a = new ActionForward( "/" );
a.setRedirect( true );
return a;
not tried it but maybe worth a shot -
URL Question[ Go to top ]
- Posted by: ahmed tantan
- Posted on: September 11 2003 18:07 EDT
- in response to stephen smithstone
Stephen,
Thanks for you quick reply. I tried your idea. But it didn't work for me.I might be doing something wrong though. Thank any ways
Ahmed