Welcome Guest, Not a member yet? Register   Sign In
CSS external files.
#18

[eluser]CroNiX[/eluser]
You could replace all of that, with just this:
Code:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

The system and application directories are already protected in CI 2+, so you are duplicating it and it's unnecessary. (see the included htaccess in /system and /application which deny direct access)

You don't need to explicitly exclude directories/files like:
Code:
RewriteCond $1 !^(index\.php|assets|images|css|js|robots\.txt|favicon\.ico)
when you have the lines
Code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

Again, you're duplicating your efforts. The last 2 lines (-f/-d) covers anything you could possible put in that exclude statement. You should use one or the other, but not both. The second method is much better than the first as it covers all real files/directories outside of /system and /application, so if you add some other image dir or something later you don't have to update your htaccess with it.


Messages In This Thread
CSS external files. - by El Forum - 05-18-2012, 03:09 PM
CSS external files. - by El Forum - 05-18-2012, 09:30 PM
CSS external files. - by El Forum - 05-18-2012, 11:26 PM
CSS external files. - by El Forum - 05-19-2012, 12:07 AM
CSS external files. - by El Forum - 05-19-2012, 03:00 AM
CSS external files. - by El Forum - 05-19-2012, 04:52 AM
CSS external files. - by El Forum - 05-19-2012, 07:21 AM
CSS external files. - by El Forum - 05-19-2012, 07:25 AM
CSS external files. - by El Forum - 05-19-2012, 08:14 AM
CSS external files. - by El Forum - 05-19-2012, 08:33 AM
CSS external files. - by El Forum - 05-19-2012, 09:14 AM
CSS external files. - by El Forum - 05-19-2012, 09:29 AM
CSS external files. - by El Forum - 05-19-2012, 10:24 AM
CSS external files. - by El Forum - 05-19-2012, 11:31 AM
CSS external files. - by El Forum - 05-19-2012, 11:35 AM
CSS external files. - by El Forum - 05-19-2012, 12:45 PM
CSS external files. - by El Forum - 02-05-2013, 01:52 PM
CSS external files. - by El Forum - 02-05-2013, 02:12 PM
CSS external files. - by El Forum - 02-06-2013, 10:38 AM



Theme © iAndrew 2016 - Forum software by © MyBB