Originating From: http://blog.163.com/lgh_2002/blog/static/44017526201051452939761/
Apache turns on pseudo-static and reports 500 errors.
Check the Apache log for the following information:
Request exceeded the limit of internal redirects due to probable configuration error. Use ' limitinternalrecursion ' to increase the limit if necessary. Use the ' LogLevel debug ' to get a backtrace.
Logically, there should be no internal redirection overrun, because I've only opened 1 of links. Suspect that the rewrite module rule was incorrectly written and went into a dead loop. Suddenly I think of the. htaccess file, originally this site was tested for deployment under a subdirectory/xxxx, while. Htaccess was copied directly from another website.
Rewriteengine on
rewritebase/kohana/
Rewriterule ^ (application|modules|system)-[f,l]
Rewritecond%{request_filename}!-f
Rewritecond%{request_filename}!-d
Rewriterule. * index.php/$0 [pt,l]
Workaround: Change the red part of the code to the following
Rewriterule ^ (. *) $/index.php/$1 [pt,l]
Apache turns on pseudo-static and reports 500 errors.