Hi Hugo,
Thanks a lot for your inputs?.Finally?.the problem is solved.
I am very very very very happy with HIAWATHA now?
It?s just responding the way I want!!!!!!!!!!!!!!
No junk and bulk Config settings, I need not be a pro at the things, easy to understand, simple and straight forward!!!!
I have used the following URL rewrite:
UseToolkit = a1
UrlToolkit {
ToolkitID = a1
Match / Skip 1
Match /.* DenyAccess
Match /a1 Skip 2
Match /a2 Skip 1
Match /.* DenyAccess
Match /*.conf DenyAccess
Call a2
RequestURI exists Return
Match /a1(.*) Rewrite /a1.exe$1
}
UrlToolkit {
ToolkitID = a2
RequestURI exists Return
Match /a2(.*) Rewrite /a2.exe$1
}
With this; server does the following things:
1. Serves request having a1 in them
2. Serves request having a2 in them
3. Serves request http://localhost:5656
4. Denies all other request?s????.
1. Is it technically correct and good to go with? (Should be!!! as it works more than fine for me?)
2. Can we achieve the same behavior in lesser number of lines??