Most of the time we receive following redirect loop error message.
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
To avoid above error message simply use following code in .htaccess file.
RewriteCond %{ENV:REDIRECT_STATUS} 100
RewriteRule .* - [L]
The above steps will resolve the Redirect loop and LimitInternalRecursionerror message.