How to configure IIS to map an ISAPI DLL off of a domain root
问题 I have an ISAPI DLL installed under a directory like: c:\inetpub\wwwroot\emsserver\emsserver.dll This is a Delphi RAD Server app. In IIS Manager (Windows 10), under Root (computer name) -> Sites -> Default Web Site -> Emsserver, I have a handler set up to handle "*.dll" requests with that DLL. The end result is I can access the app like: http://localhost/emsserver/emsserver.dll/some-action That works fine. All good there, output as expected. But the URL isn't very end user friendly. Question: