Office 2007 mime types in Apache (Linux)
So you have a client who needs to download/upload office 2007 docs via an Apache HTTP server on a Linux server?
You will probably need to add these directives to have the download work correctly. They can be added to an individual virtual host or the main configuration file:
AddType application/vnd.ms-word.document.macroEnabled.12 .docm
AddType application/vnd.openxmlformats .docx .pptx .xlsx
#AddType application/vnd.openxmlformats-officedocument.presentationml.presentation .pptx
#AddType application/vnd.openxmlformats-officedocument.spreadsheetml.sheet .xlsx
AddType application/vnd.openxmlformats-officedocument.wordprocessingml.document .docx
AddType application/vnd.ms-word.template.macroEnabled.12 .dotm
AddType application/vnd.openxmlformats-officedocument.wordprocessingml.template .dotx
AddType application/vnd.ms-powerpoint.template.macroEnabled.12 .potm
AddType application/vnd.openxmlformats-officedocument.presentationml.template .potx
AddType application/vnd.ms-powerpoint.addin.macroEnabled.12 .ppam
AddType application/vnd.ms-powerpoint.slideshow.macroEnabled.12 .ppsm
AddType application/vnd.openxmlformats-officedocument.presentationml.slideshow .ppsx
AddType application/vnd.ms-powerpoint.presentation.macroEnabled.12 .pptm
AddType application/vnd.ms-excel.addin.macroEnabled.12 .xlam
AddType application/vnd.ms-excel.sheet.binary.macroEnabled.12 .xlsb
AddType application/vnd.ms-excel.sheet.macroEnabled.12 .xlsm
AddType application/vnd.ms-excel .xlt .xla
AddType application/vnd.openxmlformats-officedocument.spreadsheetml.template .xltx
AddType application/vnd.ms-excel.template.macroEnabled.12 .xltm
AddType application/vnd.ms-xpsdocument .xps
AddType application/application/vnd.ms-powerpoint .ppt .pot .pps .ppa
AddType application/msword .doc .dot
The commented lines are there incase the shorthand pptx and xlsx mimetype does not work.
Here’s a complete list:
AddType application/msaccess .accdb .accde .accdt
AddType application/msword .doc .dot
AddType application/octet-stream .msi .mso
AddType application/vnd.ms-excel.addin.macroEnabled.12 .xlam
AddType application/vnd.ms-excel.sheet.binary.macroEnabled.12 .xlsb
AddType application/vnd.ms-excel.sheet.macroEnabled.12 .xlsm
AddType application/vnd.ms-excel.template.macroEnabled.12 .xltm
AddType application/vnd.ms-excel .xla .xlc .xlm .xls .xlt .xlw
AddType application/vnd.ms-office.calx .calx
AddType application/vnd.ms-officetheme .thmx
AddType application/vnd.ms-pki.certstore .sst
AddType application/vnd.ms-pki.pko .pko
AddType application/vnd.ms-pki.seccat .cat
AddType application/vnd.ms-pki.stl .stl
AddType application/vnd.ms-powerpoint.addin.macroEnabled.12 .ppam
AddType application/vnd.ms-powerpoint .pot .pps .ppt .ppa
AddType application/vnd.ms-powerpoint.presentation.macroEnabled.12 .pptm
AddType application/vnd.ms-powerpoint.slide.macroEnabled.12 .sldm
AddType application/vnd.ms-powerpoint.slideshow.macroEnabled.12 .ppsm
AddType application/vnd.ms-powerpoint.template.macroEnabled.12 .potm
AddType application/vnd.ms-project .mpp
AddType application/vnd.ms-visio.viewer .vdx
AddType application/vnd.ms-word.document.macroEnabled.12 .docm
AddType application/vnd.ms-word.template.macroEnabled.12 .dotm
AddType application/vnd.ms-works .wcm .wdb .wks .wps
AddType application/vnd.ms-xpsdocument .xps
AddType application/vnd.openxmlformats .docx .pptx .xlsx
AddType application/vnd.openxmlformats-officedocument.presentationml.presentation .pptx
AddType application/vnd.openxmlformats-officedocument.presentationml.slideshow .ppsx
AddType application/vnd.openxmlformats-officedocument.presentationml.slide .sldx
AddType application/vnd.openxmlformats-officedocument.presentationml.template .potx
AddType application/vnd.openxmlformats-officedocument.spreadsheetml.sheet .xlsx
AddType application/vnd.openxmlformats-officedocument.spreadsheetml.template .xltx
#AddType application/vnd.openxmlformats-officedocument.wordprocessingml.document .docx
AddType application/vnd.openxmlformats-officedocument.wordprocessingml.template .dotx
AddType application/x-msaccess .mdb
AddType application/x-ms-application .application
AddType application/x-mscardfile .crd
AddType application/x-msclip .clp
AddType application/x-msdownload .dll
AddType application/x-ms-manifest .manifest
AddType application/x-msmediaview .m13 .m14 .mvb
AddType application/x-msmetafile .wmf
AddType application/x-msmoney .mny
AddType application/x-mspublisher .pub
AddType application/x-ms-reader .lit
AddType application/x-msschedule .scd
AddType application/x-msterminal .trm
AddType application/x-ms-wmd .wmd
AddType application/x-ms-wmz .wmz
AddType application/x-mswrite .wri
AddType application/x-ms-xbap .xbap
AddType application/x-troff-ms .ms
AddType application/x-visio .vsd
Best wishes from birdie
Artem S. Tashkinov
1 Nov 08 at 5:07 pm
Hi, good post. I have been wondering about this issue,so thanks for posting. I’ll definitely be coming back to your site.
KrisBelucci
3 Jun 09 at 10:15 am
Hey Artem. Your list is perhaps too comprehensive – it might even help to separate the Office 2003 and earlier types from Office 2007′s.
Also, most sites don’t want their access databases to be downloadable.
Tricky
5 Jun 09 at 8:41 pm
Thank you so much for the list!
Zack
25 Jul 12 at 11:06 am