Request exceeded the limit of 10 internal redirects due to probable configuration error.

2010 December 14
by mcgrue

In my experience, if you get the old apache default error page of :
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

It tends to be a misconfigured .htaccess file somewhere.

www.johnweng.com was down today with that error message. JohnWeng.com is a website I host for Ustor which contains, among other things, the gruedorf competition homepage.

So the first thing I do is to shell into the server and change into the webroot directory for johnweng.com.

But there was no htaccess file.

The next most common problem I find is unix permissions-based, although you don’t tend to get 500′s in that instance. Regardless, I started asserting that ustor owned everything, www-data was the group on everything, and the proper chmod was in place.

Still nothing. Still the same error.

The next thing I do is verify that the name “johnweng.com” was actually resolving to my server. It always helps to verify that you’re looking at the right level of the problem. One traceroute later and I’ve confirmed that DNS is working as expected: the name was going to the numerical IP of the host box.

So this got curious. And increasingly frustrating.

My next step was to go to my apache log file, like the 500 error page helpfully suggested. Whenever I hit it, I’d get a the following error:
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.

Which reinforced the initial “it has to be an .htaccess file, damnit!” reaction. Those wily mofos are always redirectin’ shit. But where could it be?

The answer is, of course, up a directory.

htaccess files can, with the proper apache server settings, listen to its parent folder’s .htaccess file if one isn’t present in the current directory. And so on, and so on. I didn’t think to look in the shared directory that all my hosted sites sit in because it’s not a webroot itself, and why would there be an htaccess file there anyway?

It turns out I accidentally checked out a copy of vrpg’s svn to that shared root directory two nights prior during some late-night hackery. This caused vrpg’s htaccess file to be one file up from where johnweng.com’s webroot was. And apparently even though johnweng.com was “the top” directory in its structure, apache still looked to its parent directory and found a htaccess file to access the rules from.

Lesson learned: apache doesn’t care about its own webroots. It just cares about folders.

As a side note, I didn’t notice that this mis-checkout happened until johnweng.com was noticed to be down because every other site I deal with has its own htaccess file in its own webroot, defining exactly the rules that vrpg’s misplaced htaccess file was. So each of those child directories was overriding the rogue parent file, and so was acting as expected.

Yay systems administration!

2 Comments leave one →
2012 April 25
Chris permalink

Thanks a lot, this really saved lots of sites. It was indeed a parent folder with .htaccess. Thumbs up!

2012 August 16
Mark Pearson permalink

Solved my problem too! Those .htaccess files weasel their way where they’re not wanted!

Leave A Comment

Note: You can use basic XHTML in your comments. Your email address will never be published.

Subscribe to this comment feed via RSS