httpd::Office2007形式ファイルをダウンロードさせる

xlsxとかpptxとかdocxとか、新しいMicrosoftOfficeのデータファイルは、中身がzip圧縮になっているらしい。
で、今までのようにファイルをウェブサーバ領域上にアップロードしただけだと、IEではzipファイルと誤認する。

#以下をhttpd.confに追加して再起動

    AddType application/vnd.openxmlformats-officedocument.spreadsheetml.sheet .xlsx
    AddType application/vnd.openxmlformats-officedocument.wordprocessingml.document .docx
    AddType application/vnd.openxmlformats-officedocument.presentationml.presentation .pptx

via, http://slashdot.jp/~MK/journal/403516