Update .htaccess for video files
added video file types and .jpeg
This commit is contained in:
parent
a6cd797b22
commit
fe91d86933
|
|
@ -24,6 +24,7 @@
|
|||
RewriteCond %{REQUEST_URI} !\.js
|
||||
RewriteCond %{REQUEST_URI} !\.ico
|
||||
RewriteCond %{REQUEST_URI} !\.jpg
|
||||
RewriteCond %{REQUEST_URI} !\.jpeg
|
||||
RewriteCond %{REQUEST_URI} !\.gif
|
||||
RewriteCond %{REQUEST_URI} !\.css
|
||||
RewriteCond %{REQUEST_URI} !\.less
|
||||
|
|
@ -37,6 +38,12 @@
|
|||
RewriteCond %{REQUEST_URI} !\.woff
|
||||
RewriteCond %{REQUEST_URI} !\.ttf
|
||||
RewriteCond %{REQUEST_URI} !\.svg
|
||||
RewriteCond %{REQUEST_URI} !\.wmv
|
||||
RewriteCond %{REQUEST_URI} !\.avi
|
||||
RewriteCond %{REQUEST_URI} !\.mov
|
||||
RewriteCond %{REQUEST_URI} !\.mp4
|
||||
RewriteCond %{REQUEST_URI} !\.webm
|
||||
RewriteCond %{REQUEST_URI} !\.ogg
|
||||
RewriteCond %{REQUEST_URI} !docs/.*
|
||||
RewriteCond %{REQUEST_URI} !themes/.*
|
||||
RewriteRule ^ index.php [L,NC]
|
||||
|
|
|
|||
Loading…
Reference in New Issue