AH00124: 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.
Renaming the .htaccess resolves this issue. It has something to do with the redirect syntax. It's using a subdomain.
.htaccess looks like this currently:
########################################################
# package: minPHP
# filename: .htaccess
########################################################
# Do not allow direct access to templates
# or an unauthorized backdoor from CE
<Files ~ "blesta2ce.php|\.(pdt)$">
order deny,allow
deny from all
</Files>
# Protect against Clickjacking
#Header append X-Frame-Options "SAMEORIGIN"
RewriteEngine on
# Disable Apache MultiViews since it
# may conflict with the GUI installer
<IfModulemod_negotiation.c>
Options -MultiViews
</IfModule>
# Force HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=307,NE,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php
RewriteCond %{REQUEST_URI} ^(.*)/install.php$
RewriteRule install.php %1/install/ [R=301,L]
Question
linverts
New install, causing a redirect loop as follows:
AH00124: 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.
Renaming the .htaccess resolves this issue. It has something to do with the redirect syntax. It's using a subdomain.
.htaccess looks like this currently:
Blesta install is at https://client.linverts.com
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.