vote up 11 vote down star
8

I'm pretty sure stackoverflow.com is created with ASP.NET, but no matter where I click I see no .aspx extension in the address bar. How it is done and is there a particular reason for this?

flag

8 Answers

vote up 7 vote down check

In the case of stackoverflow, they use ASP.NET MVC rather than ASP.NET web forms. With web forms, the url is pointing to a file on your disk, while MVC is pointing to a controller action. If you're using webforms, you'd want to use URL rewriting. Scott Guthrie has a good article on doing URL rewriting.

link|flag
But why hide the aspx extension at all? – Daud Oct 28 '08 at 13:15
It's an implementation detail there's no particular reason to expose to the public interface; URLs are prettier and easier to transfer via reading-out-over-the-phone-net without it, or 'cgi', or '.php', or... – bobince Nov 10 '08 at 22:01
vote up 1 vote down

You can do this and more with ISAPI rewrite (for IIS). It allows you to create friendly urls without all the ugly query strings. It gives users a friendlier interface and can make your content more searchable.

If you are using Apache, use mod_rewrite.

The basic premise of both is that they take a friendly url (like the one you see for this site), then they transform it using a series of rules (typically regexs that you specify) to internal urls or query strings that are easily understood by the code.

An example would be that they convert posts/edit/<postnumber> to editPost.aspx?postNumber=<postnumber> by using a transform rule.

link|flag
vote up 1 vote down

Because it is developed with the ASP.Net mvc framework

link|flag
vote up 11 vote down

This site uses the ASP.NET MVC framework and Urls map to routes not physical pages. The route passes on to the controller who then decides how to display the page.

link|flag
vote up 8 vote down

Most likely its done by URL Rewriting...

The webserver is taking URLs like the ones in the address bar of your browser & repointing them to the ASPX pages behind the scenes

This can be done in a .NET HTTP Module or as an ISAPI Handler in IIS

Scott Gutherie has a good article on his site about URL Rewriting

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

link|flag
You are correct that "clean" URL can be accomplished with URL rewriting in ASP.NET. However in this particular case (stackoverflow.com) the URLs are accomplished by nature of the ASP.NET MVC framework. – Jason Whitehorn Oct 22 '08 at 2:28
... and this so called "nature of the ASP.NET MVC" in this case is System.Web.Routing. – Andrei Rinea Jan 29 at 0:36
vote up 3 vote down

As other people have answered, StackOverflow is built using ASP.NET MVC and the ASP.NET MVC uses the System.Web.Routing. However System.Web.Routing is not part of ASP.NET MVC, it was RTMd with SP1, and means it's possible to use it without ASP.NET MVC. You can see how to use it with WebForms here: http://haacked.com/archive/2008/03/11/using-routing-with-webforms.aspx and here: http://www.codeplex.com/ASPNET35Routing

link|flag
vote up -1 vote down

You can implement the same on your site using Apache's mod_rewrite function

link|flag
vote up 0 vote down

and as far as a reason :

  • you can change technology (say to PHP) without indexed or bookmarked URLs breaking
  • your URLs are more 'REST'ful and correspond to resources and not just a file
  • you can remember a URL or read it to someone over the phone more easily
link|flag

Your Answer

Get an OpenID
or

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