I guess OP has figured out a solution by now, considering this post is like 10 years old. But for anyone who bumps into this like me:
You need to setup an outbound rule I believe by the following steps:
- Open IIS Manager
- Select your Website
- Open URL Rewrite module
- Add a new outbound rule
- Select the necessary options, but most importantly, set the pattern to something like ^/(.*) which accepts any string after /
- Set the action type as Rewrite
- Set the Action Properties-> Value like https:///training/{R:1}
Apply and test. This should rewrite the responses with the /training to navigate your intended page.