Custom URL Extensions/Routing Without IIS Access - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T13:49:24Zhttp://stackoverflow.com/feeds/question/97528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access1Custom URL Extensions/Routing Without IIS Accessdaughtkom2008-09-18T22:11:13Z2008-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#975551Answer by John Sheehan for Custom URL Extensions/Routing Without IIS AccessJohn Sheehan2008-09-18T22:14:20Z2008-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#975680Answer by aaronjensen for Custom URL Extensions/Routing Without IIS Accessaaronjensen2008-09-18T22:15:33Z2008-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#975800Answer by GateKiller for Custom URL Extensions/Routing Without IIS AccessGateKiller2008-09-18T22:17:06Z2008-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#977360Answer by Travis Illig for Custom URL Extensions/Routing Without IIS AccessTravis Illig2008-09-18T22:42:23Z2008-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>