Removed unnecessary NC's
This commit is contained in:
parent
acd96ea5f0
commit
b79b5e9ebd
1 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
# Sets up ETags
|
||||
FileETag MTime Size
|
||||
|
||||
# Prevent session IDs from appearing
|
||||
# Prevent session IDs from appearing
|
||||
php_value session.use_only_cookies 1
|
||||
php_value session.use_trans_sid 0
|
||||
|
||||
|
@ -13,11 +13,11 @@ RewriteBase /
|
|||
RewriteRule ^(.+)/$ $1 [R]
|
||||
|
||||
# Makes sure to skip rewriting files and directories that really exist
|
||||
RewriteCond %{REQUEST_FILENAME} -f [NC,OR]
|
||||
RewriteCond %{REQUEST_FILENAME} -d [NC]
|
||||
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||||
RewriteCond %{REQUEST_FILENAME} -d
|
||||
RewriteRule .* - [L]
|
||||
|
||||
# Rewrites "dynamic" content filenames with dynamic timestamps data
|
||||
# Rewrites "dynamic" content filenames with dynamic timestamps data
|
||||
RewriteRule ^(.+)\.([\d]+)\.(css|js|gif|png|jpg|jpeg)$ /$1.$3 [NC,QSA]
|
||||
|
||||
# One rewrite to rule them all
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue