Skip to content

problem with apache 2.4 installation #120

@hboumedane

Description

@hboumedane

I'm having this error when I try to access my vimbadmin installation

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.

here my virtual host for apache 2.4 and my .htaccess

############## .htaccess

SetEnv APPLICATION_ENV production

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.$ - [NC,L]
RewriteRule ^.
$ /vimbadmin/index.php [NC,L]

############ virtual host

<VirtualHost *:80>
ServerName mail-server02
ServerAdmin webmaster

    DocumentRoot /var/www/vimbadmin/public

    <Directory />
            Options FollowSymLinks
            AllowOverride None
            Require all granted
    </Directory>

<Directory /var/www/vimbadmin/public>
Options FollowSymLinks
AllowOverride None

            # For Apache >= 2.4
            Require all granted

            AllowOverride all
            Order Deny,Allow
            Allow from all

            SetEnv APPLICATION_ENV production

            RewriteEngine On
            RewriteCond %{REQUEST_FILENAME} -s [OR]
            RewriteCond %{REQUEST_FILENAME} -l [OR]
            RewriteCond %{REQUEST_FILENAME} -d
            RewriteRule ^.*$ - [NC,L]
            RewriteRule ^.*$ /vimbadmin/index.php [NC,L]
    </Directory>
    LogLevel debug
    ErrorLog /var/www/vimbadmin/error.log
    CustomLog /var/www/vimbadmin/access.log combined

any idea about this error ??

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions