• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Redirecting The Request

 
Ranch Hand
Posts: 154
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have written a servlet that forwards the request to some other page using sendRedirect() and Location header . The servlet is properly written as mentioned in the book. Now i just want to know that suppose :-
I want that any request to www.abc.com should get redirected to www.xyz.com, then how my servlet will get invoked. i.e. users will be using www.abc.com which will open www.abc.com/index.htm and not my servlet, how can i get my servlet invoked from www.abc.com.
Thanks
Veenu
 
Ranch Hand
Posts: 5399
1
Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you can set default page of your abc.com to the servlet which will redirect it to xyz.com
you can set 404 error to the same servlet so any request for abc.com/dir01/page1.htm will also be directed to xyz.com.
But why do you want to take so much pain ? You[your service provider] can simply point both URL to single IP address.
 
I'm gonna teach you a lesson! Start by looking at this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic