Meraba arkdaşlar wp de index.php yi kaldırmamız için web.config dosyasına aşağıdaki gibi komutları yazıyoruz. ve ana dizine atıyoruz.. Win sunucularda ortaya çıkan bu sorun için web.config dosyası kullanarak, index.php/konu dizinini kaldırıp site.com/konu şeklinde dizini düzenliyoruz.
<?xml version="1.0"?> <configuration> <system.webServer> <defaultDocument> <files> <remove value="index.php"/> <add value="index.php"/> </files> </defaultDocument> <httpErrors errorMode="Detailed"/> <rewrite> <rules> <rule name="wordpress" patternSyntax="Wildcard"> <match url="*"/> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/> </conditions> <action type="Rewrite" url="index.php"/> </rule> </rules> </rewrite> </system.webServer> </configuration>