1: asp.net1.1에서 재작성 중 삭제 문제! ! !
다음 정규식과 같습니다.
<Rules>
<리라이터규칙>
<찾아보기>
<찾아보기>~/(d{4})/(d{2}).html</찾아보기>---------<1>
<찾아보기>~/(d{4})/(d{2})/</찾아보기>---------------<2>
<찾아보기>~/(d{4})/(d{2})</찾아보기>------------<3>
<찾아보기>~/(d{4})/(d{2})/index.html</찾아보기>----<4>
</LookFors>
<SendTo>~/Pro.aspx?year=$1&month=$2</SendTo>
</RewriterRule>
</Rules>
그 중 1번과 4번은 정상적으로 해당 페이지에 매핑이 가능
하지만, 2번과 3번은 http404 에러가 발생하게 됩니다! ! !
그 이유는 IIS 자체의 처리 흐름에 있습니다. 해결 방법은 웹 사이트 자체에서 404 오류 처리를 다시 작성하는 것입니다. ! !
1: 404 오류 처리를 위해 URL을 사용자 지정합니다(IIS에 구성되어 있으며 web.config의 구성은 다시 작성하는 데 쓸모가 없습니다).
2: System.Web 섹션에 다음 섹션을 추가합니다.
<httpHandlers>
<add verb="*" path="404.aspx" type="lt.Http404,lt"></add>
</http핸들러>
<http모듈>
<add type="lt.ReWriteModule,lt" name="ModuleRewriter" />
</httpModules>
소스 코드는 다음과 같습니다:
public class Http404:System.Web.IHttpHandler
{
공개 Http404()
{
//
// TODO: 여기에 생성자 논리를 추가합니다.
//
}
#region IHttpHandler 멤버
public void ProcessRequest(System.Web.HttpContext 컨텍스트)
{
// TODO: Http404.ProcessRequest 구현을 추가합니다.
string errorPath=context.Request.RawUrl.Split(new char[]{';'})[1];
문자열 appPath=context.Request.ApplicationPath;
int ipos=errorPath.IndexOf(appPath);
string url=errorPath.Substring(ipos+appPath.Length );
// if(!url.EndsWith("/"))
// {
// URL+="/";
// }
// url+="index.html";
// context.Response.Write(url);
// context.RewritePath(url);
//context.Response.Write(url);
url="~"+url;
string newUrl =lt.ReWriteModule.GetUrl(context,url);
//context.Response.Write(newUrl);
if (newUrl != null)
{
//cxt.Response.Filter = 새로운 ResponseFilter(cxt.Response.Filter,cxt.Request.Path);
context.Response.Write("요청된 경로:" + url);
context.Response.Write("<BR>");
context.Response.Write("리디렉션된 대상 URL: " + newUrl);
context.Response.Write("<BR>");
context.RewritePath(newUrl);
}
또 다른
{
context.Response.Write("요청한 리소스가 존재하지 않습니다!!");
context.Response.End();
}
}
공개 bool IsReusable
{
얻다
{
// TODO: Http404.IsReusable getter 구현을 추가합니다.
거짓을 반환;
}
}
/////////////////구성 섹션 처리의 httpModule은 다음과 같습니다.
public class ReWriteModule:System.Web.IHttpModule
{
공개 ReWriteModule()
{
//
// TODO: 여기에 생성자 논리를 추가합니다.
//
}
#region IHttpModule 멤버
public void Init(System.Web.HttpApplication 컨텍스트)
{
// TODO: ReWriteModule.Init 구현을 추가합니다.
context.BeginRequest+=new EventHandler(this.ReWrite);
}
개인 정적 System.Xml.XmlDocument ruleDoc = null;
개인 정적 System.Xml.XmlDocument GetRuleConfig(System.Web.HttpContext 앱)
{
if (ruleDoc == null)
{
ruleDoc = new System.Xml.XmlDocument();
ruleDoc.Load(app.Server.MapPath("~/rule.xml"));
}
ruleDoc을 반환합니다.
}
공개 정적 문자열 GetUrl(System.Web.HttpContext cxt,문자열 경로)
{
System.Xml.XmlDocument doc = GetRuleConfig(cxt);
System.Xml.XmlNodeList lst= doc.GetElementsByTagName("RewriterRule");
문자열 패트="";
foreach(lst의 System.Xml.XmlNode nd)
{
System.Xml.XmlNodeList 하위 = nd.ChildNodes[0].ChildNodes;
foreach(하위의 System.Xml.XmlNode chk)
{
pat = "^" + chk.InnerText+"$";
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(pat, System.Text.RegularExpressions.RegexOptions.Compiled | System.Text.RegularExpressions.RegexOptions.IgnoreCase);
if(reg.IsMatch(경로))
{
return reg.Replace(path, nd.ChildNodes[1].InnerText);
}
}
}
null을 반환
}
개인 무효 ReWrite(개체 보낸 사람,EventArgs e)
{
System.Web.HttpContext cxt =(System.Web.HttpApplication으로 보낸 사람).Context;
if(cxt.Request.ContentType != "이미지/pjpeg")
{
문자열 유형 = cxt.Request.ContentType.ToLower();
문자열 경로 = cxt.Request.Path;
문자열 apppath = cxt.Request.ApplicationPath;
경로 = 경로.제거(0, apppath.Length);
경로 = "~" + 경로;
string newUrl = GetUrl(cxt, path.TrimEnd().TrimStart());
if (newUrl != null)
{
//cxt.Response.Filter = 새로운 ResponseFilter(cxt.Response.Filter,cxt.Request.Path);
cxt.Response.Write("요청된 경로:" + 경로);
cxt.Response.Write("<BR>");
cxt.Response.Write("리디렉션된 대상 URL: " + newUrl);
cxt.Response.Write("<BR>");
cxt.RewritePath(newUrl);
}
//또 다른
//{
// cxt.Response.Write(cxt.Request.Path + "<BR>");
// cxt.Response.Write("요청한 리소스가 존재하지 않거나 접근 권한이 없습니다!");
// cxt.Response.Flush();
// cxt.Response.End();
//}
}
}
공공 무효 처리()
{
// TODO: ReWriteModule.Dispose 구현 추가
}
#끝지역
}
---------rule.xml은 다음과 같이 구성됩니다.
<?xml version="1.0" 인코딩="utf-8" ?>
<규칙>
<리라이터규칙>
<찾아보기>
<찾아보기>~/(d{4})/(d{2}).html</찾아보기>
<찾아보기>~/(d{4})/(d{2})/</찾아보기>
<찾아보기>~/(d{4})/(d{2})</찾아보기>
<찾아보기>~/(d{4})/(d{2})/index.html</LookFor>
</LookFors>
<SendTo>~/Pro.aspx?year=$1&month=$2</SendTo>
</RewriterRule>
<리라이터규칙>
<찾아보기>
<LookFor>~/Pro.aspx?year=(d{4})&month=(d{2})</LookFor>
</LookFors>
<SendTo>~/(d{4})/(d{2}).html</SendTo>
</RewriterRule>
<리라이터규칙>
<찾아보기>
<LookFor>~/pc</LookFor>
</LookFors>
<SendTo>~/Test2.aspx</SendTo>
</RewriterRule>
<리라이터규칙>
<찾아보기>
<LookFor>~/index.html</LookFor>
<LookFor>~/default.html</LookFor>
</LookFors>
<SendTo>~/default.aspx</SendTo>
</RewriterRule>
</Rules>
/////////재작성으로 인한 액션 변경은 제가 작성한 asp.net2.0의 urlMappings 문제를 참고해주세요! ! ! ! !