내 웹 사이트에 URL 재 작성을 사용합니다. IIS에서 설정을했고 서버에서 작동합니다. 하지만 localhost에서는 작동하지 않습니다. 프로젝트 파일에 다시 작성된 URL이있는 페이지가 없기 때문에 정상입니다. 이 문제를 어떻게 해결할 수 있습니까? 프로젝트를 개발할 때 cassini 서버를 사용합니다. 내 컴퓨터에서 로컬 IIS를 사용해야합니까? web.config 파일에서 내 URL 재 작성 역할을 볼 수 있습니다.URL 재 작성은 IIS에서 작동하지만 로컬 호스트에서는 수행되지 않습니다.
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<rewrite>
<outboundRules>
<rule name="OutboundRewriteUserFriendlyURL1" preCondition="ResponseIsHtml1">
<match filterByTags="A, Form, Img" pattern="^(.*/)ProductDetail\.aspx\?prid=([^=&]+)&(?:amp;)?product=([^=&]+)$" />
<action type="Rewrite" value="{R:1}ProductDetail/{R:2}/{R:3}/" />
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
<rules>
<rule name="RewriteUserFriendlyURL1" stopProcessing="true">
<match url="^urun/([^/]+)/([^/]+)/?$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="ProductDetail.aspx?prid={R:1}&product={R:2}" />
</rule>
</rules>
</rewrite>
<urlCompression doDynamicCompression="false" />
</system.webServer>
관련 : http://stackoverflow.com/q/2708187/1001985, http://stackoverflow.com/q/963545/1001985 – McGarnagle