I am currently developing in Umbraco 4.7.
My client has a requirement to redirect classic ASP pages with the .asp extension to their new pages. I installed the following package:
URL redirection control http://our.umbraco.org/projects/backoffice-extensions/manage-url-redirects
These packages do exactly what I need with the .aspx pages and for those who don't have the extension.
However, when it comes to .asp, this does not work. My first thoughts are that this is because .asp is not configured to map to .aspx pages in the handler mapping configuration in IIS7.
In an attempt to resolve this, I added a new handler mapping in IIS.
- Add Script Manager
- Request path - * .asp
- The executable file is C: \ windows \ Microsoft.NET \ Framework64 \ v4.0.30319 \ aspnet_isapi.dll
- Title - ClassicAspToNet
Prior to adding this handler mapping, I received an IIS 404 error page. Now I get a server exception:
URL failed.
Example: * REMOTE LINK HERE *
Your help would be greatly appreciated if you could help me determine if it is possible to serve .aspx pages with the .asp extension, and if so, how can I do this?
Thanks in advance,
David.
source share