Semantic urls with dots in .net

If you are using .NET 4.0 and IIS 7+, you can set this flag in the system.web section of your web.config and it will be allowed:

<httpRuntime relaxedUrlToFileSystemMapping="true" />

I’ve tested it and it works. Haack has an explanation of it.

Leave a Comment