Rewriting URLs in .NET 4?

I heard that Visual Studio 2010 has built-in functions for rewriting URLs using the URL routing mechanism.

I rewrote the URLs in an earlier version of visual studio using a plug-in like urlrewrite intelligent.

Can someone explain to me or help me figure this out?

Want to implement dynamic and custom URL processing on my website.

+4
source share
1 answer

Are you referring to .NET 4.0 URL Routing ?

URL routing was the first feature introduced with ASP.NET 3.5 SP1 and is already used by ASP.NET MVC Applications to expose clean, SEO-friendly web 2.0 URLs. Routing URLs allow you to configure the application to accept request URLs that are not mapped to physical files. Instead, you can use routing to determine URLs that are semantically meaningful to users, and search engine optimization (SEO) can help.

+7
source

Source: https://habr.com/ru/post/1338174/


All Articles