ByDost iki dizinde de .htaccess dosyası mevcut olmalı. İkisi de aynı dosyayı taban alıyor olmalı. Ayarlar - Genel sekmesinde site adresinin doğru olduğundan emin ol. ornek.com/blog dizininin htaccess dosyası şu şekilde olabilir:

# BEGIN WordPress

RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]

# END WordPress


Root dizin ise

# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress


Böyle bir sorun yaşamadım. Umarım çözüm yolu olur.