Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When i use code of Url rewriting it works however it disturbs my site at local server can anybody help me out I am using the following code in global.asax file in .net

C#
protected void Application_BeginRequest(object sender, EventArgs e)
    {
        //Get the current http context
        HttpContext InRequest = HttpContext.Current;

        //Get the current path
        string OldPath = InRequest.Request.Path.ToLower();

        //Check the path whether it is a contextual path
        if (InRequest.Request.RawUrl.Split('/').Length > 3)
        {
            string Path = InRequest.Request.RawUrl.Split('/')[2];

            Path = "/" + Path + "/";

            string NewPath = "/furl/" + WebConfigurationManager.AppSettings[Path];

            string ItemName = InRequest.Request.RawUrl.Split('/')[InRequest.Request.RawUrl.Split('/').Length - 1].Split('.')[0];

            string ID = InRequest.Request.RawUrl.Split('/')[3];

            //Rewrite the path with the actual path
            InRequest.RewritePath(NewPath, "", "?id=" + ID, true);

        }
    }
Posted

1 solution

Hi,

you haven't mention what issue you are facing. Looking at the code I believe you have to bypass the checking in case of local server. If your local server url is like this
http://localhost:3325/mysite/

then you can see
SQL
if (InRequest.Request.RawUrl.Split('/').Length > 3)

will yield true and process accordingly, so either you have to bypass the checking for local server or you have to handle this case. I hope this will help to solve your issue.
 
Share this answer
 
Comments
lavjain 30-Jul-11 10:57am    
See the path http://www.codeproject.com/KB/aspnet/Friendly_URLs_in_ASPNet.aspx and download the furl.zip and see the site and the site i want to run on server not on local server so what path i assign there

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900