when I upload it on localhost it work perfectly, but when upload it to server and I try to upload new file it return me HTTP ERROR 500, I don't know why ? And I also have my .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]
Anyone please command with my issue ?