I had recently updated my ubuntu from 14.04 to 16.04. I am working with codeigniter.
Before update, all project was working fine but now no one project is working with .htaccess . I'm using htaccess to hide index.php from url.
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
This is my htaccess file in the root folder of project.