我在共享服务器上托管了一个新网站(因此没有 apache 错误日志访问)。一切正常,除了来自 timthumb 的图像。错误可能在 .htaccess 文件中,它在我的本地环境中正常工作。我在本地有 PHP 5.3 版本,而服务器有 5.4 下面是我的 .htaccess 文件的代码
# deny *everything*
<FilesMatch ".*">
#Order Allow,Deny
#Deny from all
</FilesMatch>
# but now allow just *certain* necessary files:
<FilesMatch ".*\.(js|JS|css|CSS|jpg|JPG|gif|GIF|png|PNG|swf|SWF|php)$">
Order Allow,Deny
Allow from all
</FilesMatch>
IndexIgnore */*
OPTIONS -Indexes -ExecCGI