リンクの長さが短いサプレッサー サイトに取り組んできましたが、IIS7 では理解できないようです。isapi rewrite と mod_rewrite の作業には慣れています。
次のシナリオが有効です:
test.com を持っているとしましょう。これがメイン ドメインです。ドメインはすべてのファイルを正常に処理する必要があります。ただし、/.*
がディレクトリでもファイルでもない場合は、 に送信する必要がありますredirect.asp?text=(.*)
。
これは私のweb.configがどのように見えるかです
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="YOURLS 1" stopProcessing="true">
<match url="^([0-9A-Za-z-]+)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="redirect.asp?test={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>