我使用codeigniter来建立我的网站,在按照删除index.php文件的过程之后,一切都在localhost上正常工作,但是当我在phpmyadmin.ovh.net上托管我的网站时它不再工作了,我可以& #39; t到达任何链接。有人可以帮帮我吗?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>