Getting CodeIgniter URLs properly rewritten is a bit tricky when using FastCGI, including the mod_fastcgi_handler. Typically, we want to remove the index.php from all urls. To do this, create an .htaccess file in the same directory with index.php and paste into it: Options -Indexes +FollowSymLinks RewriteEngine On RewriteBase / # exclude any paths that are […]