Forum Moderators: phranque
RewriteCond $1 !^(index\.php|css|images|favicon\.ico|js|robots\.txt)
www.example.com/application does not redirect to www.example.com/index.php/application because the framework is stored in a folder titled application and the folder contains an htaccess file that says deny from all
RewriteRule ^/application$ /index.php/application [L]
It seems to me that htaccess file in the application folder is doing its thing before the main htaccess file has a chance to redirect the url to index.php.