Merhaba arkadaşlar aşağıdaki .htaccess kodlarını web.config'e dönüştürmem gerekiyor.

Edit:Sorun çözüldü aynı sorun ile karşılaşan arkadaşlar web.config dosyasını aşağıdaki şekilde düzenleyebilirler.

htaccess kodları
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
</IfModule>
webconfig kodları
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
<rule name="NiceURL1" stopProcessing="true">
  <match url="^([^/]+)$" />
  <action type="Rewrite" url="index.php?qa-rewrite={R:1}" />
</rule>
               
<rule name="NiceURL2" stopProcessing="true">
  <match url="^([^/]+)/([^/]+)$" />
  <action type="Rewrite" url="index.php?qa-rewrite={R:0}&amp;{QUERY_STRING}" />
</rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>