묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
win2008서버에서 iis 7.5를 사용합니다
2010.12.09 15:26
제로보드를 정상적으로 설치를 완료했습니다.
그리고 어드민으로 로그인을 했고요
그럼다음 페이지를 만들어 볼려고 하니 아래와 같이 오류가 나는군요
무엇이 문제인지 알고싶습니다.
참고로 저는 2008서버와 iis7.5에서 설치를 하였습니다.
댓글 1
-
fsfsdas
2010.12.09 18:19
-
노길문
2010.12.10 13:23
감사합니다. 아직 넘어야 할 산이 많네요 제로보드에 대해 더 많은 공부가 필요할것 같습니다. 해결에 도움을 주셔서 감사합니다.
rewrite mod 문제입니다.
아래와 같이 web.config를 작성하십시오.
만약 그래도 안된다면 rewrite mod를 사용 중지하시면 해결될 것 같습니다.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="rule 1" stopProcessing="true">
<match url="^layouts/(.+)/(.+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="./index.php" />
</rule>
<rule name="rule 2" stopProcessing="true">
<match url="^(.+)/files/(member_extra_info|attach|cache|faceOff)/(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{SCRIPT_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="./files/{R:2}/{R:3}" />
</rule>
<rule name="rule 3" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)(/[a-zA-Z0-9_]+(/entry)?)?/(files|modules|common|widgets|widgetStyle|layouts|addons)/(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{SCRIPT_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="./{R:4}/{R:5}" />
</rule>
<rule name="rule 4" stopProcessing="true">
<match url="^(rss|atom)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?module=rss&act={R:1}" appendQueryString="false" />
</rule>
<rule name="rule 5" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/(rss|atom|api)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?mid={R:1}&act={R:2}" appendQueryString="false" />
</rule>
<rule name="rule 6" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/(rss|atom|api)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?vid={R:1}&mid={R:2}&act={R:3}" appendQueryString="false" />
</rule>
<rule name="rule 7" stopProcessing="true">
<match url="^([0-9]+)/(.+)/trackback$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?document_srl={R:1}&key={R:2}&act=trackback" appendQueryString="false" />
</rule>
<rule name="rule 8" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?vid={R:1}&document_srl={R:2}&key={R:3}&act=trackback" appendQueryString="false" />
</rule>
<rule name="rule 9" stopProcessing="true">
<match url="^admin/?$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?module=admin" appendQueryString="false" />
</rule>
<rule name="rule 10" stopProcessing="true">
<match url="^([0-9]+)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?document_srl={R:1}" appendQueryString="false" />
</rule>
<rule name="rule 11" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/?$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{SCRIPT_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="./index.php?mid={R:1}" appendQueryString="false" />
</rule>
<rule name="rule 12" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/([0-9]+)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?mid={R:1}&document_srl={R:2}" appendQueryString="false" />
</rule>
<rule name="rule 13" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{SCRIPT_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="./index.php?vid={R:1}&mid={R:2}" appendQueryString="false" />
</rule>
<rule name="rule 14" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([0-9]+)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?vid={R:1}&mid={R:2}&document_srl={R:3}" appendQueryString="false" />
</rule>
<rule name="rule 15" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/entry/(.+)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?mid={R:1}&entry={R:2}" appendQueryString="false" />
</rule>
<rule name="rule 16" stopProcessing="true">
<match url="^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/entry/(.+)$" ignoreCase="false" />
<action type="Rewrite" url="./index.php?vid={R:1}&mid={R:2}&entry={R:3}" appendQueryString="false" />
</rule>
<rule name="rule 1">
<match url=".(jpe?g|gif|png|bmp|avi|swf|mpe?g|zip|z[00-99]|rar|mp[1-9]|arj|exe|asf|wm[a-z]*|ra[a-z]*|alz|ZIP|Z[00-99])" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_REFERER}" pattern="^$" ignoreCase="false" negate="true" />
<add input="{HTTP_REFERER}" pattern="^http(s)?://(www\.)?spxe0uy49.sqs.kr" negate="true" />
<add input="{QUERY_STRING}" pattern="^http(s)?://(www\.)?parkozpc.com" />
</conditions>
<action type="Rewrite" url="[NC]" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>