index.html oluştur ve index.php olan yere gönder.
İlk olarak .htaccess dosyasına
DirectoryIndex index.html index.php
satırını ekliyoruz.
wp-includes/canonical.php dosyasını açıyoruz.Aşağıdaki yeri bul.
// Some PHP setups turn requests for / into /index.php in REQUEST_URI
// See: http://trac.wordpress.org/ticket/5017
// See: http://trac.wordpress.org/ticket/7173
// Disabled, for now:
// $original['path'] = preg_replace('|/index\.php$|', '/', $original['path']);
En alt satırını sil. Yani :
$original['path'] = preg_replace('|/index\.php$|', '/', $original['path']);
Olması lazım.