here is my web config file can any one please help me to convert below web config file in to htaccess file
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{R:1}" pattern="^(index\.php|ndex\.html|public|game|demo|crossdomain.xml|Request.php|RummyDummyMachine.air|PlayRummy247.air|ZendFramework|backend|.js|favicon.ico|lib|sitemap.xml|assets|sitemap.html|sitemap.xml.gz|ror.xml|urllist.txt|googlehostedservice.html|.jpg|.png|.air|.gif|.css|robots\.txt|css)" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
<staticContent>
<mimeMap fileExtension=".air" mimeType="application/vnd.adobe.air-application-installer-package+zip" />
</staticContent>
</system.webServer>
</configuration>