Welcome Guest, Not a member yet? Register   Sign In
can this be done in htaccess?
#1

[eluser]Unknown[/eluser]
My htaccess file is working just fine as it is, but I was wondering if it's possible to modify it so that it no longer sends missing file requests (jpg, css, etc) back to the index. Ideally, I would rather the system throw an Apache 404 and not load CI all over again for each missing file.


Here is what I'm currently using...
Code:
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^(.+) - [PT,L]
RewriteRule ^(.*)$ /index.php/$1 [L]


Any ideas are welcome.

Thanks.




Theme © iAndrew 2016 - Forum software by © MyBB