아래와같이 IIS 에서 405 에러를 만났을때 난감하다,
특히나 당신이 ASP 개발자라던가,, WINDOWS SERVER 계열만 했다던가 하면,,, 거의 못찾는다,,
( IIS 에서는 ASP 는 기본적으로 적용 되어 있기 때문이다. )
필자도 마찬가지고, 만약 IIS 에서 HTML 로 GET, POST 로 값을 넘겨야 할때.
혹은 PHP 등으로 값을 넘길대 아래 방법을 참고 해주기 바란다.
특히나 당신이 ASP 개발자라던가,, WINDOWS SERVER 계열만 했다던가 하면,,, 거의 못찾는다,,
( IIS 에서는 ASP 는 기본적으로 적용 되어 있기 때문이다. )
필자도 마찬가지고, 만약 IIS 에서 HTML 로 GET, POST 로 값을 넘겨야 할때.
혹은 PHP 등으로 값을 넘길대 아래 방법을 참고 해주기 바란다.
Resolution
Add a script map for the extension. A script map associates a particular file type with a given script module. The web server runs the module on the given file and sends the output to the browser, instead of sending the file directly to the browser.
- Go to "Control Panel"-"Administrative Tools"-"Internet Information Services".
- Expand the tree to "COMPUTERNAME"-"Web Sites"-"Default Web Site".
- Right-click on "Default Web Site" and select "Properties". (Alternately, select "Default Web Site" and press Alt+Enter.)
- Select the "Home Directory" tab.
- Click the "Configuration" button.
- From the "Mappings" tab, select the "Add" button.
- Click the "Browse..." button, choose "Dynamic Link Libraries *.dll" from the "Files of Type" dropdown, and select c:\WINDOWS\System32\inetsrv\asp.dll.
- Type ".html" (without quotes) in the "Extension" box.
- Select the "Limit to:" radio button, and type in "GET, POST" (without quotes) in the box next to it.
- Click the "OK" button and close all the dialogs. (If the "OK" button is greyed out, then make sure all the entries are correct and try clicking in the file name box.)
See the screen shot below. You must adjust the above instructions to your particular OS, web site configuration, and file type. You can associate the file type with a different script engine besides asp.dll, which is the ASP 3.0 script engine. There is no need to give IWAM_COMPUTERNAME permission to the file, only IUSR_COMPUTERNAME needs NTFS read and execute permission.
ㅎㅎ 위에 메뉴를 확인 하라..
'Server Story.... > Windows Server' 카테고리의 다른 글
WebKnight 를 이용한 SQL Injection 공격 차단 (0) | 2010.05.28 |
---|---|
WebKnight 설정FAQ (0) | 2010.05.28 |
How to Enable PAE in x86 32-bit Windows Server 2003 and 2000 to Use Large 4GB or More RAM Memory (0) | 2010.05.28 |
무단복사 금지(오른쪽 마우스 클릭 금지) 해제 방법, 소스보기 기능 (0) | 2010.05.28 |
Windows 터미널 포트 변경 (0) | 2010.05.19 |