URL rewriting이란, WebServer에 들어온 Request의 URI를 변경해서 WAS에 전달하는 것이다.
예를 들어
http://localhost/service/Customer 이런것을 http://localhost/Customer 식으로 특정 문자열을 빼거나 더할 수 도 있고
http://www.store.com/products.aspx?category=books 게 들어온 요청을 http://www.store.com/products/category/books 이렇게 바꿀 수 도 있다...
RESTful 설계시에 매우 유용한데, 예전에 WebLogic으로 구현했을때는 Apache Proxy Plug in 을 이용했는데, IIS에서도 비슷한 형태로 구현이 가능할듯..
자료 원본 : http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx
'프로그래밍 > C# & .NET' 카테고리의 다른 글
WF (Workflow Foundation) (0) | 2010.06.29 |
---|---|
AppFabric (ESB + DataGrid) - 윈도우즈서버 새 기능 (0) | 2010.06.28 |
WCF REST 프레임웍에서 Http Header Control하기 (0) | 2010.06.28 |
WCF로 REST 개발이 된다. VS 2010에서 세팅하기 (0) | 2010.06.28 |
WCF가 몬가 했더니.. (0) | 2010.06.25 |