Hi, I want to redirect urls. Suppose I type the url http://localhost/sites/new_user.jsp, it should take me to say, http://localhost/sites/new_user_register.jsp . I have got a list of URLs that I want to be redirected to different URLs. I am using ATG Dynamo 6.3.0 as my AP Server. I do not want to use Servlet Filter or Javascript for this. Can someone find a way out? Thanks, Debashis
You could create servlet-mappings for each pattern you want to redirect. You could write a front controller that handles all requests and routes them to the proper place.
Also, you could use a filter. You said you didn't want to do do this but you didn't say why. Why are you against using filters?