merhaba arkadaşlar bir adet sitem var .php ne yazık ki windows sunucuda çalıştırmam gerekiyor site çalışıyor sadece seo uyumlu linklerim için htacces de yaptığım link yönlendirmelerini web.config de yapamıyorum kodlarım aşağıda online çeviciri vs hepsini denedim olmuyor

htacces kodlarım ;

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^index.html index.php [L,NC]
RewriteRule ^iletisim iletisim.php [L,NC]
RewriteRule ^urunler urunler.php [L,NC]
RewriteRule ^referanslar referanslar.php [L,NC]
RewriteRule ^projeler projeler.php [L,NC]
RewriteRule ^ik ik.php [L,NC]



ReWriteRule ^referanslar/([a-z0-9_-]+).html referanslar.php?ref_cat=$1 [L,NC]

ReWriteRule ^sayfalar/([a-z0-9_-]+) hakkimizda.php?syf=$1 [L,NC]

ReWriteRule ^hizmetler/([a-z0-9_-]+) hizmet.php?hzmt=$1 [L,NC]

ReWriteRule ^proj/([a-z0-9_-]+) proje_kategori.php?prj=$1 [L,NC]

ReWriteRule ^proje_detay/([a-z0-9_-]+) proje_detay.php?prj=$1 [L,NC]


web.config kodlarım ;

<?xml version="1.0" encoding="UTF-8"?>
<configuration>


<configSections>
<section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerS ectionHandler, URLRewriter" />
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensions SectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGro up, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptReso urceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebService sSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerial izationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileSer viceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthentica tionServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServic eSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>



<RewriterConfig>


<rule name="kural 1">
<match url="^index.html"/>
<action type="Rewrite" url="/index.php" />
</rule>

<rule name="rule 2a" stopProcessing="true">
<match url="^iletisim" ignoreCase="true" />
<action type="Rewrite" url="/iletisim.php" />
</rule>
<rule name="rule 3a" stopProcessing="true">
<match url="^urunler" ignoreCase="true" />
<action type="Rewrite" url="/urunler.php" />
</rule>
<rule name="rule 4a" stopProcessing="true">
<match url="^referanslar" ignoreCase="true" />
<action type="Rewrite" url="/referanslar.php" />
</rule>
<rule name="rule 5a" stopProcessing="true">
<match url="^projeler" ignoreCase="true" />
<action type="Rewrite" url="/projeler.php" />
</rule>
<rule name="rule 6a" stopProcessing="true">
<match url="^ik" ignoreCase="true" />
<action type="Rewrite" url="/ik.php" />
</rule>
</RewriterConfig>



<system.webServer>
<!--
<modules>
<add type="URLRewriter.ModuleRewriter, URLRewriter"
name="ModuleRewriter" />
</modules>
-->


</system.webServer>

</configuration>


yardımcı olabilir misiniz ?