일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- array
- sql순위
- ERD
- injection
- sql업데이트
- 정규식
- SPLIT
- 이미지가로길이
- FileSystemObject
- 자바기초
- XML
- sql랭킹
- inner join
- jdbc driver
- instr
- 이미지세로길이
- MSSQL보안
- 한글입력체크
- update
- VarType
- wap
- JavaScript
- tempDB
- 인젝션
- javascript 한글입력체크
- WML
- xmldom
- VARIABLE
- join
- asp함수
- Today
- Total
3초기억력
URL Rewrite 본문
제목 : URL Rewrite
소스 :
내용 :
IIS URL Rewrite 2.0 enables Web administrators to create powerful rules to implement URLs that are easier for users to remember and easier for search engines to find. By using rule templates, rewrite maps, .NET providers, and other functionality integrated into IIS Manager, Web administrators can easily set up rules to define URL rewriting behavior based on HTTP headers, HTTP response or request headers, IIS server variables, and even complex programmatic rules. In addition, Web administrators can perform redirects, send custom responses, or stop HTTP requests based on the logic expressed in the rewrite rules.
예제 소스 파일 :
http://localhost:8077/board/708 방식으로 사용하고 싶을때
web.config 파일에
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite to board_view.asp">
<match url="^board/([0-9]+)" />
<action type="Rewrite" url="/board_view.asp?idx={R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
이렇게 넣으면 됨
'플밍_ASP' 카테고리의 다른 글
실시간 환율 계산법. yahoo(야후) 사용법. 한국(원화) --> 중국(위안화) 계산 (0) | 2016.02.26 |
---|---|
축약 URL, 단축 URL 생성 ASP function (0) | 2016.01.20 |
Using Classic ASP and URL Rewrite for Dynamic SEO Functionality (0) | 2015.03.18 |
ASP SHA256 암호화 (0) | 2015.03.17 |
asp 자동검색어 - ajax (0) | 2015.03.05 |