как я могу переписать URL, чтобы он отображал путь, например, subdomain.example.com/blog в адресной строке, но отображал страницу, такую как www.example.com/blog/?tag=/subdomain.
вот процесс событий, которые я хочу произвести:
первый: я перехожу на subdomain.example.com/blog Второй: я перенаправлен на www.example.com/blog/?tag = / subdomain В-третьих: URL в адресной строке по-прежнему отображает subdomain.example.com/blog, хотя я нахожусь на странице www.example.com/blog/?tag=/subdomain.
Я быпредпочитаю использовать метод HttpContext.RewritePath ()
Я пытался закодировать это в IHttpModule без успеха
вот мой код:
using System;
using System.Web;
using System.Net;
using System.Text;
using System.IO;
namespace CommonRewriter
{
public class ParseUrl : IHttpModule
{
public ParseUrl()
{
}
string req = null;
string rep = null;
public String ModuleName
{
get { return "CommonRewriter"; }
}
public void Init(HttpApplication application)
{
application.BeginRequest += new EventHandler(application_BeginRequest);
application.EndRequest += new EventHandler(application_EndRequest);
application.PreRequestHandlerExecute += new EventHandler(application_PreRequestHandlerExecute);
application.AuthorizeRequest += new EventHandler(application_AuthorizeRequest);
}
void application_AuthorizeRequest(object sender, EventArgs e)
{
}
void application_PreRequestHandlerExecute(object sender, EventArgs e)
{
}
private string ParseAndReapply(string textToParse)
{
string final = null;
if (textToParse.Contains("example.com"))
{
string[] splitter = textToParse.Split('.');
if (splitter[0].ToLower() != "www" && (splitter[2].ToLower()).Contains("blog"))
{
string add = splitter[0].Remove(0, 7);
final = ("http://www.example.com/blog/?tag=/" + add);
}
else { final = textToParse; }
}
else { final = textToParse; }
return final;
}
void application_BeginRequest(object sender, EventArgs e)
{
req = HttpContext.Current.Request.Url.AbsoluteUri;
HttpApplication application = (HttpApplication)sender;
HttpContext context = application.Context;
if (req.ToLower().Contains("example.com/blog") && !req.ToLower().Contains("www."))
{
string[] split = req.Split('.');
if (split[1] == "example")
{
rep = ParseAndReapply(req);
context.RewritePath(rep);
context.Response.End();
}
}
}
void application_EndRequest(object sender, EventArgs e)
{
HttpApplication application = (HttpApplication)sender;
HttpContext context = application.Context;
HttpContext context1 = HttpContext.Current;
if (HttpContext.Current.Request.Url.AbsoluteUri.Contains("/?tag=/"))
{
context.RewritePath(req,false);
}
}
}
public void Dispose() { }
}
}