Answer the question
In order to leave comments, you need to log in
I get an error Request exceeded the limit of 10 internal redirects due to probable configuration error, what should I do?
Good afternoon!
The crawler gives an error when crawling the site
[Sat Jun 20 20:51:19 2015] [error] [client 87.117.189.8] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: www.google.ru
Domains were merged with the following code
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^website address.ru$ [NC]
RewriteRule ^(.*)$ http ://www.site address.ru/$1 [R=301,L]
In Google webmaster, I specified the main domain, did everything that is recommended, the error still appears.
How to get rid of it leaving the domains glued?
entire file
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# Gluing domains
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^site address\.ru$ [NC]
RewriteRule ^(.*)$ http://www.site address.ru/$1 [R= 301,L]
# Disable GLOBALS and _REQUEST requests
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS (=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]
# Get rid of the hotlink
RewriteEngine On
RewriteCond % {HTTP_REFERER} !^ http://(.+\.)?miassmebel\.ru/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*\.(jpe?g|gif|bmp|png)$ / wp-content/themes/miassmebel/screenshot.png [L]
# Deny access to wp-config
order allow,deny
deny from all
# Deny access to .htaccess
order allow,deny
deny from all
satisfy all
# Deny directory browsing
Options All - Indexes
# Enable caching
ExpiresActive On
ExpiresDefault "access plus 1 day"
# END WordPress
CharsetDisable On
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question