|
|
posted on September 07, 2013 09:39
To switch from 'humanfriendly' mode to 'advanced' mode, follow these steps:
- Take a backup of the web.config file for your site
- Open the web.config file, and search for 'urlformat'. You should find this in the
section, like this:
<add name="DNNFriendlyUrl" type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules" includePageName="true" regexMatch="[^a-zA-Z0-9 _-]" urlFormat="humanfriendly" />
- Change the urlFormat value to 'advanced', like this:
<add name="DNNFriendlyUrl" type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules" includePageName="true" regexMatch="[^a-zA-Z0-9 _-]" urlFormat="advanced" />
- Save the web.config file.
- Request the home page of the new site - the site is now using the Advanced Url Format.
- Fully test the site to ensure it is operating as expected. If any issues are found, restore the web.config backup.
There are currently no comments, be the first to post one!