This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
Hey,
In file UrlRewriter.cs line: 240 you have bug:
check requestPath.Contains(virtualFolderName), but if you have path like 'Generator.aspx' and virtualFolderName = 'en' the condition return true but isn't true. My suggest is use: (requestPath.Contains(virtualFolderName + "/")
I've changed it according to your suggestion and pushed it to the source code repository.
Best,
Joe