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
Yorum Gönder