Thank you so much. I found a solution.
Edit my web.config below this.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1"
stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="
http://localhost:8080/
scm/{R:1}" />
</rule>
</rules>
<outboundRules>
<rule name="Update Cookie Path" enabled="true"
patternSyntax="ECMAScript">
<match serverVariable="RESPONSE_Set_Cookie"
pattern="^(.*; path=/)scm/" />
<action type="Rewrite" value="{R:1}" />
</rule>
</outboundRules>
</rewrite>
</system.webServer>
</configuration>
Thank you, again.
On 9월7일, 오후7시13분, Sebastian Sdorra <
s.sdo...@gmail.com> wrote:
> Have a look at this question on stackoverflowhttp://
stackoverflow.com/questions/5353861/rewrite-rules-for-response....
>
> Sebastian
>
> 2011/9/7 Sebastian Sdorra <
s.sdo...@gmail.com>:
>
>
>
>
>
>
>
> > Hi,
> > I have no experience with iis, but i think the problem is a wrong
> > cookie path or host. It is possible to configure the cookie path in
> > iis, like the ProxyPassReverseCookiePath of apache?
>
> > Sebastian
>
> > 2011/9/7 d_d_d <
dfdgs...@gmail.com>: