up vote 5 down vote favorite
1
share [g+] share [fb]

I would like to implement a URL rewrriter for DotNetNuke. Have questions as to whether this is a good or possible approach and any suggestions other developers may have.

Can I add a dynamic or static route for URL rewriter from the 'Pages'-> 'Add Page' section?

Let's say I'm creating a page called 'Events' underneath the 'Activities' menu item.

Can I write some custom code in DotNetNuke that will add a prompt on the add page screen that assumes I will want a static or dynamic route added for - site.com/Activities/Events Or if I name the page 'Event Calendar' then it would suggest 'site.com/Activities/Event-Calendar'?

I would like any feedback or suggestions on how I would accomplish this! Thank you.

link|improve this question

Great question. Strange but true: there's very little DNN interest on StackOverflow, but there is some. What solution did you end up using? – Yar Mar 12 '09 at 12:51
feedback

5 Answers

up vote 4 down vote accepted

If you're using DotNetNuke 4.8 or greater, you just need to enable Human Friendly Urls through the Web.Config.

To enable human friendly urls, replace:

<add name="DNNFriendlyUrl" type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules" includePageName="true" regexMatch="[^a-zA-Z0-9 _-]" />

with:

<add name="DNNFriendlyUrl" type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules" includePageName="true" regexMatch="[^a-zA-Z0-9 _-]" urlFormat="HumanFriendly" />

Additional Detail: Enable Human Friendly Urls in DotNetNuke

link|improve this answer
feedback

Check this out - details here:

http://www.ifinity.com.au/Blog/Technical_Blog/EntryId/19/Rewriting-the-DotNetNuke-Url-Rewriter-Module/

Also, take a look at the existing FriendlyUrl module that's already included in DNN.

If you want to do this on the stock pages, you'll need to crack open the source for it, or write a module that does this independently.

link|improve this answer
That link is somewhat dated as it refers to version 1 of the software which has grown into much more than that. For the Url Master module, see here ifinity.com.au/Products/Url_Master_DotNetNuke_Url_Rewriting/… This module also allows custom redirects, 404 pages and much more. For the Friendly Url Provider (replacement of the standard DNN Url Rewriter) see here: ifinity.com.au/Products/Friendly_Url_Provider_For_DNN This module allows human friendly urls, but also has automatic redirects for 'old' Urls (with the tabids) and other options. – Bruce Chapman Jan 31 '11 at 7:30
Note: the iFinity stuff doesn't appear to support splash pages for some reason – Chris Lively May 16 '11 at 21:48
feedback

To answer your question directly : yes, you can add some code to the DNN Page Settings page. However, you'll be modifying the core code and thus won't be able to easily upgrade your installation when the next DNN release is made.

A lot of people come to DNN and want to write a new Url Rewriter. The problem is not the rewriting : it's getting the DNN framework to generate the correct urls where you would like them - in the menus, in generated links within modules. To really change the rewriting scheme you need to replace/augment the Url Rewriting function, the friendly url generation function, and provide some sort of redirect capability in order to tie old and new Urls together.

link|improve this answer
feedback

Another suggestion is Page Blaster, if you are not wishing write your own code. Works well for the sites l use it on.

link|improve this answer
feedback

Several of these are great replies... i echo the note that in DNN 4.9 and above you can easily work with some custom url rewriting scripts that you can create in the HOST > Host Settings page. That is great for simple exceptions and new small rules.

Otherwise, for our experience, the two best other solutions out there are DNN Masters SEO URL ReWriter http://www.snowcovered.com/Snowcovered2/Default.aspx?tabid=242&PackageID=15704

and

IFinity URL ReWriter http://www.ifinity.com.au/Products/Friendly_Url_Provider_For_DNN

both are fantastic and do what you're looking for. each has their own little quirks. We seem to use the IFinity more now for newer DNN 5 and 6 instances, but there are some built in 404 page functions in DNNMasters that were hard to beat.

take a look closely at both, and i believe you can do a free test of the iFinity pretty easily too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.