Hi I set:
<IfModule mod_rewrite.c>
Options +MultiViews +FollowSymLinks
DirectoryIndex index.php index.html
RewriteEngine on
RewriteRule modules/(.+)/controllers/(.+)\.php$ /index.php?/$1/$2 [L,R=301]
RewriteRule controllers/(.+)\.php$ /index.php?/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
and index_page is set to “” and my uri_protocol is set to the default “AUTO”.
But i get 404 error. My CI vesion is 1.7.2
I aslo set CGI (instead FastCGI). Please help why that does not work at dreamhost. ((((
