我正在使用基于codeignitor的产品和下面提到的htaccess文件。它在本地工作正常,但当我上传到我的托管服务器时,它给出500错误。当我删除.htaccess文件时它工作正常但是htaccess文件是必要的,没有内部类给出404错误。
#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php
<IfModule mod_rewrite.c>
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
#RewriteRule ^(.*)$ /index.php?q=$1 [L,QSA]
</IfModule>
Options All -Indexes
php_value post_max_size 10000M
php_value upload_max_filesize 10000M
由于