how do i make my web app friendly URL?

currently my app URL looks like this

http://www.domain.com/Page.aspx?article=103

but I would like to display the URL to look like this

http://www.domain.com/Page.aspx?Google-likes-url-friendly

what would i need to do?

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

check out

http://learn.iis.net/page.aspx/460/using-the-url-rewrite-module/

you will need to download and install a module.

Pretty easy to use and configure.

Here is the introduction :

http://learn.iis.net/page.aspx/461/creating-rewrite-rules-for-the-url-rewrite-module/

link|improve this answer
feedback

Look into using ASP.NET MVC. With it, you could have a URL that's even better: http://www.domain.com/Article/Google-likes-url-friendly

link|improve this answer
1  
If you're using ASP.NET 3.5SP1 or later you can use ASP.NET routing even with ASP.NET forms, not just MVC: msdn.microsoft.com/en-us/library/cc668201.aspx – Rup Jun 14 '10 at 16:59
feedback

If you're using ASP.NET 4.0 or .NET 3.5 SP1 (or ASP.NET MVC), you can use the routing module.

ASP.NET Routing @ MSDN

There is a good walkthrough at http://msdn.microsoft.com/en-us/library/dd329551.aspx

link|improve this answer
feedback

Keep in mind the url-rewrite module metioned above only works with IIS7/7.5. And make sure your host, if you are using one, has it installed.

For IIS6, IIS5, take a look here:

Url Rewriting with ASP.NET

ASP.NET routing and URL rewriting will both work. Here are the differences:

http://learn.iis.net/page.aspx/496/iis-url-rewriting-and-aspnet-routing/

link|improve this answer
feedback

Another option is to write a 404 trap: http://codeeleven.blogspot.com/2007/11/rewriting-urls-in-aspnet-without-using.html

Hacky, but an effective last resort.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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