10-11-2011, 02:46 PM
[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...
Any ideas are welcome.
Thanks.
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.