i'm trying to launch yii2 web site on windows server.
My .htaccess file:
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
But when i'm trying to convert it to web.config file (using online convertors), i'm receiveing this:
<rule name="rule 1i">
<match url="." />
<action type="Rewrite" url="index.php" />
</rule>
Site is't work with this web.config (error 500). Please, give me right web.config file for my .htaccess