I am trying to remove index.php
from codeigniter url. This code work for in every codeigniter site with aws server
. But this time I am using cloudacropolis hosting and its not working for me. Here is the .htaccess
code
RewriteEngine on
RewriteBase /ProjectEye/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]