以下の書き換えの変換が web.config ファイルに対してどのようになるかを誰か教えてもらえますか?
RewriteEngine On
RewriteRule ^/(credits|content)/?$ switch.php?view=$1
または、素晴らしいオンライン変換ツールがあれば.
ありがとう
編集
例えば:
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
だろう:
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions>
<add input="{HTTP_HOST}" pattern="^example\.com$" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="http://www.example.com/{R:1}" />
</rule>
</rules>
</rewrite>