Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For older *.doc documents this was enough:

header("Content-Type: application/msword");

What mime type should I use for new docx documents? Also for pptx and xlsx documents?

share|improve this question
If you using linux, you can make use of this command file -bi YOUR_FILE – ajreal Nov 18 '10 at 8:40
1  
@ajreal that doesn't provide the MIME type. The output for a jpg with that command would look like JPEG image data, EXIF standard – wmarbut Oct 25 '12 at 20:08

1 Answer

up vote 156 down vote accepted

Here are the correct mimetypes:

Extension MIME Type
.xlsx   application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
.xltx   application/vnd.openxmlformats-officedocument.spreadsheetml.template
.potx   application/vnd.openxmlformats-officedocument.presentationml.template
.ppsx   application/vnd.openxmlformats-officedocument.presentationml.slideshow
.pptx   application/vnd.openxmlformats-officedocument.presentationml.presentation
.sldx   application/vnd.openxmlformats-officedocument.presentationml.slide
.docx   application/vnd.openxmlformats-officedocument.wordprocessingml.document
.dotx   application/vnd.openxmlformats-officedocument.wordprocessingml.template
.xlam   application/vnd.ms-excel.addin.macroEnabled.12
.xlsb   application/vnd.ms-excel.sheet.binary.macroEnabled.12

For a complete list checkout this TechNet article.

share|improve this answer
14  
Thank goodness for someone who actually posts the answer instead of a link to an outdated site that doesn't include the newer formats. – wmarbut Oct 25 '12 at 20:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.