I have made site http://www.passion4fashion.com before 6 months. now I want rewrite my sites url and make SEO friendly. Now its display dynamic url and i wanna make this type link structure. Home/ Main Category/ Prodcutname.aspx Can anyone share with me code. how to do that ??
URL rewriting concept is being implemented in asp.net greatly ! Just you need to go on MSDN asp.net online and or either search on Google with the query "implement URL rewriting in asp.net" Follow the first link ! In this tutorial of Microsoft , URL rewriting concept is full fleshed implemented with code specifications Regards
A common way to do this if you application is custom is to modify the application_beginrequest event in your global.asax and perform a RewritePath call to local a specific page based on the URL of the request. Search google for global.asax and rewritepath and yuo should find tonnes of resources about it.