Converter .htaccess para Web.Config ONLINE

Abaixo veremos uma maneira automática de converter. Htaccess para Web.Config.
Não é necessário baixar nenhum aplicativo para converter .Htaccess para Web.Config, basta colocar no campo abaixo o código do seu .htaccess e clique em “Converter para web.config”, então o .htaccess será automaticamente convertido para Web.Config.

Ex: RewriteRule ^index.html$ http://cbsa.com.br/ [R=301,L]

 

 

Default WordPress .htaccess equivalent in Web.config

<rewrite>
 <rules>
     <rule name="Main Rule" stopProcessing="true">
         <match url=".*" />
         <conditions logicalGrouping="MatchAll">
             <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
             <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
         </conditions>
         <action type="Rewrite" url="index.php/{R:0}" />
     </rule>
 </rules>
</rewrite>

Magento .htaccess equivalent in Web.config

<rule name="Imported Rule 1" stopProcessing="true">
  <match url=".*" ignoreCase="false" />
  <conditions>
	<add input="{URL}" pattern="^/(media|skin|js)/" ignoreCase="false" negate="true" />
	<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
	<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
  </conditions>
  <action type="Rewrite" url="index.php" />
</rule>