Click here to Skip to main content
15,885,546 members
Articles / Web Development / ASP.NET
Article

DotNetNuke URL Rewriting HTTP Module

Rate me:
Please Sign up or sign in to vote.
2.92/5 (6 votes)
3 May 20042 min read 74.9K   1.2K   47   3
Always maps your static links to the appropriate Tab ID.

Introduction

My intention is not for this to be a massive how-to on HTTP Modules - I think this little DLL is quite useful (I know that there are similar libraries out there that does mostly the same). Hopefully, posting it on Code Project will get it out to as many people as possible.

Breakdown

The Rewrite class implements the IHttpModule interface. This interface is bound to the ASP.NET app in the httpModules section of the System.Web section in the Web.Config.

Add this line to your <system.web> section of your Web.Config file:

XML
<httpModules>
 <add type="Rewriter.Rewrite, Rewriter" name="Rewriter" />
</httpModules>

The interface is implemented as follows:

C#
public class Rewrite : System.Web.IHttpModule
{

The Init function of the interface wires up a BeginRequest event handler. This ensures that as the page is requested, our custom handler intercepts the call, allowing us to replace the path with a new path.

C#
public void Init(System.Web.HttpApplication Appl)
{
  Appl.BeginRequest+=new System.EventHandler(Rewrite_BeginRequest);
}

The Dispose function is required by the interface.

C#
public void Dispose()
{
  // Empty
}

The BeginRequest handler sequence receives the HttpApplication context through the sender object.

C#
public void Rewrite_BeginRequest(object sender, System.EventArgs args)
{
  System.Web.HttpApplication Appl = (System.Web.HttpApplication)sender;
  string path = Appl.Request.Path;
  string indicator = "/Content/";

  ... More Code ...

}

This gives the path that we can then process using the GetTab function. This function queries the DotNetNuke TabController system to give us the correct Tab ID and subsequent path, given an original path. The indicator I use is a directory string "/Content/" to indicate that this is different from a normal query.

C#
private string GetTab(string path, string indicator)
{
  ...
}

The SendToNewUrl initiates a rewrite of the path. There are two mechanisms that are possible:

  • The Context.RewritePath retains the URL that it is passed... E.g.: http://www.codeproject.com/Content/ExampleContent.aspx.
  • whereas the Response.Redirect drops the URL and redirects to the appropriate tab... E.g.: http://www.codeproject.com/Default.Aspx?tabid=5.
C#
public void SendToNewUrl(string url, bool spider,
                                System.Web.HttpApplication Appl)
{
  if (spider)
  {
      Appl.Context.RewritePath(url);
  }
  else
  {
      Appl.Response.Redirect(url, true);
  }
}

Fingers crossed, you guys get the gist of the system. This is not a difficult task, but hopefully will make your DotNetNuke sites a little easier for navigation or spidering.

Review the GetTab function for more in depth string passing. I know I should have used regular expressions to get to the guts of it all..

There are plenty of additional ways to improve this functionality.

Finally, a big thank you goes out to the Code Project and DotNetNuke and their respective communities.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
yrbyogi31-Mar-09 18:37
yrbyogi31-Mar-09 18:37 
GeneralGood Pin
Azhar Saiyed8-Sep-08 20:01
Azhar Saiyed8-Sep-08 20:01 
Generalpost back Pin
Jacee11-May-04 5:37
Jacee11-May-04 5:37 
Post back will change this url again. See more at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/URLRewriting.asp

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.