[eluser]wortell[/eluser]
for anyone else wondering...
orig. .htaccess setup for my CI 2.0 app
Code:
...
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
...
and now...
Code:
...
RewriteCond $1 !^(index\.php|images|application|scripts|styles|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
...
fixed that 403/404 issues... with directly accessing (or by style/script accesses in <head> section of html page)