vote up 2 vote down star

Is it possible to have extension-less URLs (ASP.NET MVC default) with shared hosting? I have seen some things to get GoDaddy working by including the .aspx extension in the Global.asax routing, however I don't want my URLs to include .aspx.

flag

77% accept rate
2  
Yes, I've got my site up through Gearhost. They just needed to enable that feature on II67 for my subdomain. – George Stocker Jul 17 at 16:45

3 Answers

vote up 3 vote down check

Yes, I have a couple sites that are currently hosted on GoDaddy shared w/ extensionless URLs in ASP.NET. You need to enable IIS7 integrated pipeline mode as you can't access wildcard mappings or add ISAPI filters on a shared box. Once that's turned on, you can route incoming (extensionless) URLs to .aspx or whatever else through an HTTP Module or via URLRewriter.NET or whatever else.

Good luck.

link|flag
vote up 2 vote down

It sounds like they are using IIS6 (or IIS5 even), which means you'll have to ask them to make some changes to the server settings or install an ISAPI filter to get extensionless routing. I don't think that's going to happen, especially with GoDaddy, so you are better off looking for someone who offers IIS7 hosting.

link|flag
1  
GoDaddy currently has IIS7 available. – aherrick Jul 17 at 16:55
vote up 0 vote down

Check this out.

http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx

This says how to do it in a hosted environment.

link|flag

Your Answer

Get an OpenID
or

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