![]() |
[solved] External loop redirection after an htaccess update
In my Apache error.log I get thousands of this error:
Code:
2013-01-02 20:46:44.582 [INFO] [50.18.21.225:48281-1#APVH_example.com] [REWRITE] detect external loop redirection with target URL: /index.html, skip.Code:
<IfModule mod_rewrite.c>Code:
RewriteCond %{HTTP_USER_AGENT} "Somebot|Otherbot" [NC,OR] |
try adding index.html in RewriteCond:
RewriteCond %{REQUEST_URI} !(\/mypages|\/otherpages) [NC] => RewriteCond %{REQUEST_URI} !(\/mypages|\/otherpages|\/index\.html) [NC] |
Thank you. It is solved.
|
| All times are GMT -7. The time now is 05:19 AM. |