Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am in a situation where I want to restructure my site's urls. That is I have a page that lists the article names (with each article name as a link). As shown below:

ARTICLE1

ARTICLE2

ARTICLE3

Now if I click on an article I want the url to be as follows:

www.domain.com/ArticleID/name-of-the-Article

share|improve this question

3 Answers

up vote 4 down vote accepted

The term your looking for is "url rewriting" or "routing".

I think the easy way will be to use the ASP.NET MVC routing, it works with Webforms too:

Using Routing With WebForms

Routing with ASP.NET Web Forms

share|improve this answer

I think you're looking for URL Rewriting, I'd also recomend UrlRewritingNet.

share|improve this answer

Other possibilities that have worked well:

If your site is hosted on Windows Server 2008, you can use the Microsoft URL Rewrite Module for IIS 7.0.

A nice tool for older servers is Isapi Rewrite (look here - there's a free light version), very similar to Apache style mod_rewrite. May be a problem in shared hosting environments unless the provider is willing to install an Isapi dll.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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