So far I have a fresh install of 2.1.3 and have placed an .htaccess file with:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
in the root directory, same level as application, system, etc.
- Edited
$config['index_page'] = 'index.php';to
$config['index_page'] = '';inapplication\config\config.php. - Turned on
rewrite_module. - Restarted Apache.
But I still end up with a 404 even after trying all the solution, even those in related posts.

