当我在localhost上传它时它工作得很好,但是当它上传到服务器并且我尝试上传新文件时它会返回HTTP ERROR 500,我不知道为什么? 我也有我的.htacess
RewriteOptions inherit
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|chat|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
任何人都可以指导我的问题吗?