admin管理员组

文章数量:1278854

I have up until now been fine and Im not sure why this error would throw up. Im using Laragon for a simple PHPMVC project on my local windows machine.

I cant figure out what this error is being caused by as Im not great with htaccess but from what stack has shown, there are plenty of errors like this caused by errors in the config.

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.
Options -Multiviews
RewriteEngine On
Options -Indexes

RewriteBase /public

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l 

RewriteRule ^(.+) index.php?url=$1 [QSA,L]

My folder structure looks like this.

  • app
    • controllers
    • models
    • views
  • public
    • index.php
    • .htaccess

本文标签: apacheMy htaccess file causes an internal server errorStack Overflow