[WordPress] Request exceeded the limit of 10 internal redirects due to probable configuration error
Hướng dẫn khắc phục lỗi Request exceeded the limit of 10 internal redirects due to probable configuration error khi truy cập các link trong của website
Lỗi này thường do RewriteRule trong .htaccess của bạn khi ở localhost đang /folder
Các bạn cần copy lại default của .htaccess wordpress
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Chúc các bạn thành công.
Bình luận
Gửi