Add .bmp to allowed file types
This commit is contained in:
parent
04af0adb4e
commit
ffc91879e7
|
|
@ -1,4 +1,5 @@
|
||||||
<IfModule mod_rewrite.c>
|
<IfModule mod_rewrite.c>
|
||||||
|
|
||||||
<IfModule mod_negotiation.c>
|
<IfModule mod_negotiation.c>
|
||||||
Options -MultiViews
|
Options -MultiViews
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
@ -33,12 +34,14 @@
|
||||||
RewriteCond %{REQUEST_URI} !\.ico
|
RewriteCond %{REQUEST_URI} !\.ico
|
||||||
RewriteCond %{REQUEST_URI} !\.jpg
|
RewriteCond %{REQUEST_URI} !\.jpg
|
||||||
RewriteCond %{REQUEST_URI} !\.jpeg
|
RewriteCond %{REQUEST_URI} !\.jpeg
|
||||||
|
RewriteCond %{REQUEST_URI} !\.bmp
|
||||||
|
RewriteCond %{REQUEST_URI} !\.png
|
||||||
RewriteCond %{REQUEST_URI} !\.gif
|
RewriteCond %{REQUEST_URI} !\.gif
|
||||||
|
RewriteCond %{REQUEST_URI} !\.svg
|
||||||
RewriteCond %{REQUEST_URI} !\.css
|
RewriteCond %{REQUEST_URI} !\.css
|
||||||
RewriteCond %{REQUEST_URI} !\.less
|
RewriteCond %{REQUEST_URI} !\.less
|
||||||
RewriteCond %{REQUEST_URI} !\.scss
|
RewriteCond %{REQUEST_URI} !\.scss
|
||||||
RewriteCond %{REQUEST_URI} !\.pdf
|
RewriteCond %{REQUEST_URI} !\.pdf
|
||||||
RewriteCond %{REQUEST_URI} !\.png
|
|
||||||
RewriteCond %{REQUEST_URI} !\.swf
|
RewriteCond %{REQUEST_URI} !\.swf
|
||||||
RewriteCond %{REQUEST_URI} !\.txt
|
RewriteCond %{REQUEST_URI} !\.txt
|
||||||
RewriteCond %{REQUEST_URI} !\.xml
|
RewriteCond %{REQUEST_URI} !\.xml
|
||||||
|
|
@ -47,7 +50,6 @@
|
||||||
RewriteCond %{REQUEST_URI} !\.woff
|
RewriteCond %{REQUEST_URI} !\.woff
|
||||||
RewriteCond %{REQUEST_URI} !\.woff2
|
RewriteCond %{REQUEST_URI} !\.woff2
|
||||||
RewriteCond %{REQUEST_URI} !\.ttf
|
RewriteCond %{REQUEST_URI} !\.ttf
|
||||||
RewriteCond %{REQUEST_URI} !\.svg
|
|
||||||
RewriteCond %{REQUEST_URI} !\.wmv
|
RewriteCond %{REQUEST_URI} !\.wmv
|
||||||
RewriteCond %{REQUEST_URI} !\.mp3
|
RewriteCond %{REQUEST_URI} !\.mp3
|
||||||
RewriteCond %{REQUEST_URI} !\.wav
|
RewriteCond %{REQUEST_URI} !\.wav
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue