60 lines
2.2 KiB
Plaintext
60 lines
2.2 KiB
Plaintext
|
# ----------------------------------------------------------------------
|
||
|
# Mime Types
|
||
|
# Mime Associates the requested filename's extensions with the file's behavior and content
|
||
|
# http://httpd.apache.org/docs/2.0/mod/mod_mime.html
|
||
|
# ----------------------------------------------------------------------
|
||
|
|
||
|
<ifmodule mod_mime.c="">
|
||
|
AddType text/css .css
|
||
|
AddType application/x-javascript .js
|
||
|
AddType text/x-component .htc
|
||
|
AddType text/html .html .htm
|
||
|
AddType text/richtext .rtf .rtx
|
||
|
AddType image/svg+xml .svg .svgz
|
||
|
AddType text/plain .txt
|
||
|
AddType text/xsd .xsd
|
||
|
AddType text/xsl .xsl
|
||
|
AddType text/xml .xml
|
||
|
AddType video/asf .asf .asx .wax .wmv .wmx
|
||
|
AddType video/avi .avi
|
||
|
AddType image/bmp .bmp
|
||
|
AddType application/java .class
|
||
|
AddType video/divx .divx
|
||
|
AddType application/msword .doc .docx
|
||
|
AddType application/vnd.ms-fontobject .eot
|
||
|
AddType application/x-msdownload .exe
|
||
|
AddType image/gif .gif
|
||
|
AddType application/x-gzip .gz .gzip
|
||
|
AddType image/x-icon .ico
|
||
|
AddType image/jpeg .jpg .jpeg .jpe
|
||
|
AddType application/vnd.ms-access .mdb
|
||
|
AddType audio/midi .mid .midi
|
||
|
AddType video/quicktime .mov .qt
|
||
|
AddType audio/mpeg .mp3 .m4a
|
||
|
AddType video/mp4 .mp4 .m4v
|
||
|
AddType video/ogg .ogv
|
||
|
AddType video/mpeg .mpeg .mpg .mpe
|
||
|
AddType application/vnd.ms-project .mpp
|
||
|
AddType application/x-font-otf .otf
|
||
|
AddType application/vnd.oasis.opendocument.database .odb
|
||
|
AddType application/vnd.oasis.opendocument.chart .odc
|
||
|
AddType application/vnd.oasis.opendocument.formula .odf
|
||
|
AddType application/vnd.oasis.opendocument.graphics .odg
|
||
|
AddType application/vnd.oasis.opendocument.presentation .odp
|
||
|
AddType application/vnd.oasis.opendocument.spreadsheet .ods
|
||
|
AddType application/vnd.oasis.opendocument.text .odt
|
||
|
AddType audio/ogg .ogg
|
||
|
AddType application/pdf .pdf
|
||
|
AddType image/png .png
|
||
|
AddType application/vnd.ms-powerpoint .pot .pps .ppt .pptx
|
||
|
AddType audio/x-realaudio .ra .ram
|
||
|
AddType application/x-shockwave-flash .swf
|
||
|
AddType application/x-tar .tar
|
||
|
AddType image/tiff .tif .tiff
|
||
|
AddType application/x-font-ttf .ttf .ttc
|
||
|
AddType audio/wav .wav
|
||
|
AddType audio/wma .wma
|
||
|
AddType application/vnd.ms-write .wri
|
||
|
AddType application/vnd.ms-excel .xla .xls .xlsx .xlt .xlw
|
||
|
AddType application/zip .zip
|
||
|
</ifmodule>
|