Mod_rewrite issue with godaddy web hosting

Posted by MrFoh on Server Fault See other posts from Server Fault or by MrFoh
Published on 2013-06-30T07:50:53Z Indexed on 2013/06/30 10:22 UTC
Read the original article Hit count: 200

Filed under:
|
|

Am trying to use laravel to build a site but my routes all redirect to the homepage. Apache error logs show this

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.

And the .htaccess file is this

<IfModule mod_rewrite.c>
    Options -MultiViews
    Options +FollowSymLinks

    RewriteEngine On
    RewriteBase /

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

    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

The webroot has multiple sub-folders which are document roots for different domains. Am working with one of these sub-folders.

What is causing this error and how can it be fixed

© Server Fault or respective owner

Related posts about apache2

Related posts about .htaccess