user153410
user153410

Reputation: 863

Using SEO friendly URLs in ASP.NET

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

Upvotes: 0

Views: 1474

Answers (3)

Olaf
Olaf

Reputation: 10247

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.

Upvotes: 1

CD..
CD..

Reputation: 74096

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

Upvotes: 4

Yuriy Faktorovich
Yuriy Faktorovich

Reputation: 68667

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

Upvotes: 2

Related Questions