While the built-in URL formats are great forSEO, we have given store administrators the ability to modify the URL structure forproduct,entity, andtopic pages on their sites. This can sometimes be necessary to integrate with 3rd party applications, and can also help store owners who have migrated to AspDotNetStorefront from other applications keep the URL structures they had before.
Modifying URL structures
Changing your site's URL format is done through modifications to the web.config. While this is a relatively simple process,it is very important to have this file backed up before making any changes!. Also, keep in mind that if you are working on the web.config for a live site (which we doNOTrecommend), every time the file is saved the website will restart, which can impact any customers currently on the site.
To modify the URL rewrite rules, open the web.config file in a text editor and search for 'Routing Rules'. The next 30 or so lines determine how the software generates URLs for different parts of the site.
The first section is labeled 'AspDotNetStorefront Default Url Patterns'. This contains all of the standard URL rules. The most important ones are as follows:
Format generated: t-topic-name-with-dashes-for-spaces.aspx
There are also several commented out lines in this area that give examples of how URLs can be changed. For example, commenting out the default product line and uncommenting this line:
The same kind of change can be made to category URLs by commenting out the default line and uncommenting the second sample.
A few things to remember when making changes:
The label for the 'type' of URL (product, category, etc) does not have to be in the URL format, but the unique identifiers (ID and SENAME) do to ensure pages are indexed properly by search engines. If either of those components are left out of the URL structure, they will be added in as a querystring (ex: ?productid=78).
Do not remove any lines entirely! All of the formats can be changed, but all of the URL rules that are there by default should be left in place. We highly recommend that instead of removing lines you don't want, you simply comment them out so they can be recovered later if desired.
The links that the software generates automatically will change whenever you make changes to these rules, however any hard-coded links you have placed on your site (in topics, skins, etc) may need adjusting after any changes you make. Be sure to test your site thoroughly after making changes.
If you wish to change the file extensions on URLs (.aspx to .html, etc), your site must be running in IIS7 with Integrated Pipeline Mode enabled. Please speak with your host to verify that. On older versions of IIS, you will have to add a handler mapping in IIS to tell it to process the extension you changed pages to use through the ASP.NET handler.