L
Les Caudle
If a non-aspx file is requested, like "domain.com/school", IIS is not passing
this on to ASP.NET 2.0 so that urlMappings can take place in Web.Config.
IIS is simply returning a 404 and not passing the request on.
<urlMappings enabled="true">
<add
url="~/school"
mappedUrl="~/Schools.aspx" />
</urlMappings>
How can I resolve this?
this on to ASP.NET 2.0 so that urlMappings can take place in Web.Config.
IIS is simply returning a 404 and not passing the request on.
<urlMappings enabled="true">
<add
url="~/school"
mappedUrl="~/Schools.aspx" />
</urlMappings>
How can I resolve this?