From: Michael G. Schneider on
I am looking for a way for rewriting a URL, allowing me to use an own
component for calculating the target URL. For eaxmple, with the URL...

http://www.example.com/{0}/test.xlsx

the entire string should be handed over to my component, which will then do
the calculation or do some lookup in a SQL database, and finally return
with either

http://www.example.com/somevalidpath/test.xlsx

if the request is valid or return with

http://www.example.com/error.html

if the request ist not valid. Can this be done?

Michael G. Schneider