Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log.
这与任何htcaccess文件或东西有关?
这个页面在我的本地主机完美工作,但是当我在这里上传: http : //globalcolleague.com/test/它会引发错误。
开始寻找的最好的地方是error_log 。 看看它,它可能会照亮的方式。
如果logging的错误不够清楚,请使用strace :
strace -f -o strace.output -p pid_of_apache
这将输出由apache进程及其subprocess(-f标志跟随subprocess)所有系统调用到名为strace.output的文件。 当错误日志不够清晰的时候,strace是非常棒的,可以给出一些提示。
希望这可以帮助。