web.config Dosyasında hata var diyor yardımcı olabilecek varmı ? Hazır bir site kullanıyorum Web.config dosyası içeriği şu hata nerede ?
Kod:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<default********>
<files>
<clear />
<add value="index.php" />
<add value="index.html" />
<add value="index.htm" />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="default.aspx" />
<add value="iisstart.htm" />
</files>
</default********>
<rewrite>
<rules>
<rule name="rewritephp">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="{R:1}.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

