Custom URL Extensions/Routing Without IIS Access - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T13:49:24Z http://stackoverflow.com/feeds/question/97528 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access 1 Custom URL Extensions/Routing Without IIS Access daughtkom 2008-09-18T22:11:13Z 2008-09-18T22:42:23Z <p>I have a need to use extensionless URLs. I do not have access to IIS (6.0) so I cannot map requests to ASP.NET and handle with a HttpHandler/HttpModule. However, I can set a custom 404 page via web host control panel.</p> <p>My current plan is to perform necessary logic in the custom 404 page, but it "feels wrong". Are there any recommendations that I am missing?</p> <p>Edited: Added "Without IIS Access" to the title since someone thought this was a repeat question.</p> http://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access/97555#97555 1 Answer by John Sheehan for Custom URL Extensions/Routing Without IIS Access John Sheehan 2008-09-18T22:14:20Z 2008-09-18T22:14:20Z <p>Without access to IIS, that would be your only option.</p> http://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access/97568#97568 0 Answer by aaronjensen for Custom URL Extensions/Routing Without IIS Access aaronjensen 2008-09-18T22:15:33Z 2008-09-18T22:15:33Z <p>Never tried it, but would URL Rewriting work?</p> <p><a href="http://www.aspnettutorials.com/tutorials/network/web-URL-aspnet2-csharp.aspx" rel="nofollow">http://www.aspnettutorials.com/tutorials/network/web-URL-aspnet2-csharp.aspx</a></p> http://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access/97580#97580 0 Answer by GateKiller for Custom URL Extensions/Routing Without IIS Access GateKiller 2008-09-18T22:17:06Z 2008-09-18T22:17:06Z <p><a href="http://stackoverflow.com/questions/2262/aspnet-url-rewriting">This question has already been asked.</a></p> http://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access/97736#97736 0 Answer by Travis Illig for Custom URL Extensions/Routing Without IIS Access Travis Illig 2008-09-18T22:42:23Z 2008-09-18T22:42:23Z <p>The 404 page really is your only option if you can't map the requests. I've seen several blog packages that do this to enable magic URLs like .../archive/YYYY/MM/DD and such - there's no such page, so it hits the 404 page and the 404 page does the redirection.</p>