Click here to Skip to main content
Click here to Skip to main content

URL rewrite for .NET 2.0

By , 10 Dec 2005
 

Introduction

This is another article that describes the different solutions used to build sharpcms.net. I wrote this to get started with writing the technical descriptions about how we made the solution and to share our ideas with the community. The primary article on CodeProject can be read from here.

For the sharpcms.net project we needed a simple way to rewrite the URLs to get rid of the nasty queries like the ID etc. When we first started the project we wrote a system where we only needed a single query to handle most of the requests. Check out this one.

Therefore, it was a very easy job to make a URL rewrite solution, so the URL would look like this: http://www.sharpcms.net/show/danish/about.aspx.

The solution

We inserted a begin request handler in the global.asax file in the root directory. This handler checked to see if there existed a file with the name requested. In that case, I would not do anything. For example, a request like this: sharpcms.dk/admin.aspx. It would check to see if there existsed a file with that name in the root directory. If not it would rewrite the query to: sharpcms.dk/default.aspx?process=admin.aspx.

This is only rewritten on the server and the client still thinks that it uses the first URL. This is a nice thing because it still looks pretty in the browser. But it has one problem. The browser gets confused because all the relative paths are now incorrect. Therefore, you need to define the base path in HTML header like this:

<html>
   <head>
        <base href="http://www.sharpcms.dk/">
   </head>
</html>

Since our project is an open source project the base path changes from system to system so we wrote a little script to let the server figure out the correct path:

[Editor comment: Line breaks used to avoid scrolling.]

string basepath = 
  httpPage.Request.ServerVariables["SERVER_PROTOCOL"].
                                    Split('/')[0].ToLower() 
  + "://" + httpPage.Request.ServerVariables["SERVER_NAME"] 
  + ":" + httpPage.Request.ServerVariables["SERVER_PORT"] 
  + httpPage.Request.ApplicationPath.TrimEnd('/')+ "/";

This makes it a lot more dynamic with websites that have more than one domain associated.

Since the .NET Framework on IIS only handles certain extensions like .aspx you have to end the URL with aspx.

The global.asax file

I am not satisfied with the code yet. It looks to me that there should be a nicer or a more cleaner way to do this. I haven't found it yet though. We have tested the code for a while now and it works even with virtual paths.

The code to be placed in the global.asax file is this:

[Editor comment: Line breaks used to avoid scrolling.]

void Application_BeginRequest(object sender, EventArgs e) { 

    System.Web.HttpContext httpContext = HttpContext.Current;
    String currentURL = httpContext.Request.Path.ToLower(); 
    string processPath = 
      currentURL.Substring(httpContext.Request.ApplicationPath.Length).
                                               TrimStart('/').ToLower();
    
    //Creates the physical path on the server 
    string physicalPath = httpContext.Server.MapPath(
                  currentURL.Substring(currentURL.LastIndexOf("/") + 1));
    
    //checks to see if the file does not exsists.
    if (!System.IO.File.Exists(physicalPath))
    {
    
        string queryString = 
               httpContext.Request.ServerVariables["QUERY_STRING"];
        string defaultPage = "~/default.aspx?process=";
        
        if (processPath.EndsWith(".aspx"))
        {
        
        
            processPath = processPath.Substring(0, 
                            processPath.Length - ".aspx".Length); 
        
        } 
        // Rewrites the path
        httpContext.RewritePath(
                      defaultPage + processPath + "&" + queryString);
    } 
}

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

About the Author

peterhansen2
Web Developer
Denmark Denmark
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionNice article [modified]memberNavin Pandit13 Jun '12 - 20:00 
Hii,
It's a really cool stuff! Many thanks for sharing with us.
 

In the above code, you may get an error: EnableViewStateMac failed error
http://forums.asp.net/t/1166634.aspx/1
 
For this, many experts suggest to add tag EnableViewStateMac="false" at <page> directive but this actually did not solve the issue. It navigates to itself only.
 
For this issue,I simply resolve this issue by managing the above method: httpContext.RewritePath(...)
 

Have a gr8 day!
 

Regards,
Navin
http://www.navinpandit.blogspot.com

-- modified 14 Jun '12 - 2:14.

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 10 Dec 2005
Article Copyright 2005 by peterhansen2
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid