We have 2 web applications what we want to be installed on different IIS servers. But we want what user can access one by address http://www.test.com and second by http://www.test.com/directory
Is it possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, that’s not possible, unless you have a front-end ‘reverse proxy’ which receives all queries and dispatches them to the relevant server.
Alternatively you could arrange for the main server to HTTP redirect all queries for http://www.example.com/directory to (e.g.) www2.example.com/directory, although obviously that’s then exposing a second hostname and URL for that content.