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/测试/它会引发错误。
答案1
开始查找的最佳位置是error_log
。查看一下,它可能会为您指明方向。
如果记录的错误不够清楚,请使用strace
:
strace -f -o strace.output -p pid_of_apache
这会将 apache 进程及其子进程(-f 标志也跟在子进程后面)进行的所有系统调用输出到名为 strace.output 的文件中。当错误日志不够清晰时,strace 可以很好地提示发生了什么。
希望这可以帮助。