Logging under IIS7 seems to have changed in that access to a parent directory with a default document is now logged differently than IIS6.
The s-uri-stem field appears to ignore whatever documents have been defined in the Default Documents module. According to Microsoft this is by design.
- Under IIS6, if you were to go to "example.com", the log would show "GET /default.htm - 80".
- Under IIS7, if you were to go to "example.com", the log file would show "GET / - 80".
For web analytics purposes, we need IIS7 to log access to a parent directory with a default document to log it like IIS6 above.
How can we do that without using URL Rewrite?