vote up 1 vote down star

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.

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?

Edited: Added "Without IIS Access" to the title since someone thought this was a repeat question.

flag

75% accept rate
Sorry, Q open again. I should go to sleep :) – GateKiller Sep 18 '08 at 22:21

4 Answers

vote up 1 vote down check

Without access to IIS, that would be your only option.

link|flag
agree. this is the only way – Darren Kopp Sep 18 '08 at 22:15
vote up 0 vote down

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.

link|flag
vote up 0 vote down

This question has already been asked.

link|flag
This is not a dupe of that. Re-read it – John Sheehan Sep 18 '08 at 22:17
You should edit the title of this one to 'Custom URL Extensions/Routing in ASP.NET without access to IIS' – John Sheehan Sep 18 '08 at 22:18
This is not the same question. – daughtkom Sep 18 '08 at 22:18
vote up 0 vote down

Never tried it, but would URL Rewriting work?

http://www.aspnettutorials.com/tutorials/network/web-URL-aspnet2-csharp.aspx

link|flag
No. Without access to IIS, he can't map non-ASP.net requests (extension-less requests are not handled by ASP.NET) to be handled by the Global.asax. – John Sheehan Sep 18 '08 at 22:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.