IIS7.5が実行されており、明示的なURLに一致させようとしています。次のコードは動作しません。IIS正確なURLに一致する書き換えパターン
<rule name="presid" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_URI}" matchType="Pattern" pattern="http://www.presid.com/presid" ignoreCase="true" negate="false" />
</conditions>
<action type="Redirect" url="http://www.domain.com/presid" />
</rule>
I've also tried escaping the periods:
http://www\.presid\.com/presid
but that doesn't seem to work either.
IIS7.5を使用して特定の完全なURLに一致させるにはどうすればよいですか?
おかげ
これは動作しますが、私は後だ、正確に何をしません:/ presid、私は壊れたイメージを持っている(*): http://domain.com/images/presid/eee.jpg
私はしたくありませんそのイメージはリダイレクトされます。
:
– itwb