Request exceeded the limit of 10 internal redirects hatası çözümü

Kaan GİRGİN

Administrator
Yönetici
16 Tem 2019
127
20
Wordpress taşırken yada farklı bir işlem yaparken request exceeded the limit of 10 internal redirects hatası alıyorsanız htaccess dosyanız bozulmuş olabilir. Htaccess dosyanızı silip tekrar oluşturun ve aşağıdaki kodları ekleyin.

Kod:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress