Hi I have a problem where I’m setting up an internet Kiosk in a public place and when a user goes to a certain URL I want it to redirect to another particular URL.
For example I want it setup so that if a user goes to http://www.example.com/step1 I want the browser to automatically go to http://www.example.com/step2
The only restriction here is that it has to work on Windows due to hardware limitations.
Does anybody know how I could do this?
Thanks
A couple of ways to do it:
Implement a Browser Helper Object, catch the
BeforeNavigateevent, cancel the navigation and direct it somewhere else.Use a specialized proxy server that responds to a request for the first URL by returning a redirect to the second, and passes all other requests through.