Advertisement
MilanBozic

Mime Types

Aug 28th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. # MIME TYPES
  2. <IfModule mod_mime.c>
  3.  
  4. # DEFAULTS
  5. DefaultLanguage en
  6. AddLanguage en-US .html .css .js
  7. AddCharset utf-8 .html .css .js .xml .json .rss .atom
  8.  
  9. # JAVASCRIPT
  10. AddType application/javascript js jsonp
  11. AddType application/json json
  12.  
  13. # FONTS
  14. AddType font/opentype otf
  15. AddType application/font-woff woff
  16. AddType application/x-font-woff woff
  17. AddType application/vnd.ms-fontobject eot
  18. AddType application/x-font-ttf ttc ttf
  19. AddType image/svg+xml svg svgz
  20. AddEncoding gzip svgz
  21.  
  22. # AUDIO
  23. AddType audio/mp4 m4a f4a f4b
  24. AddType audio/ogg oga ogg
  25.  
  26. # VIDEO
  27. AddType video/mp4 mp4 m4v f4v f4p
  28. AddType video/ogg ogv
  29. AddType video/webm webm
  30. AddType video/x-flv flv
  31.  
  32. # OTHERS
  33. AddType application/octet-stream safariextz
  34. AddType application/x-chrome-extension crx
  35. AddType application/x-opera-extension oex
  36. AddType application/x-shockwave-flash swf
  37. AddType application/x-web-app-manifest+json webapp
  38. AddType application/x-xpinstall xpi
  39. AddType application/xml atom rdf rss xml
  40. AddType application/vnd.openxmlformats .docx .pptx .xlsx .xltx . xltm .dotx .potx .ppsx
  41. AddType text/cache-manifest appcache manifest
  42. AddType text/vtt vtt
  43. AddType text/x-component htc
  44. AddType text/x-vcard vcf
  45. AddType image/webp webp
  46. AddType image/x-icon ico
  47.  
  48. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement