Home   Webhosting   Website   Hoe zorg ik dat browsers docx-bestanden goed openen?

Hoe zorg ik dat browsers docx-bestanden goed openen?

Wanneer een link op een website naar een .docx of een .xlsx bestand verwijst, zal bij het openen van de link in Internet Explorer, deze aangeboden worden als zip bestand. Dit komt doordat een .docx of een .xlsx bestand eigenlijk een samengesteld bestand is, dat door de PC gezien wordt als een zip bestand, omdat deze de meerdere bestanden in de .docx kan verwerken.

Op onze server wordt het als een niet-internet bestand weergegeven, en dus moet de browser bepalen wat ermee moet gebeuren. Je kunt echter instellen wat de browser ermee moet doen, en je doet dat via onderstaande regels in een bestand met de naam .htaccess in de publieke hoofdmap /httpdocs

addtype application/vnd.openxmlformats-officedocument.wordprocessingml.document docx

en/of:

addtype application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx

Een (mogelijk reeds bestaand) .htaccess bestand in de map /httpdocs is te zien en bewerken met Filemanager in het Control Panel. Met deze regels wordt het bestand correct weergegeven in Internet Explorer. Deze instelling geldt dan voor alle links naar .docx bestanden vanuit de map /httpdocs

Een dergelijke regel bestaat ook voor de overige formaten:

AddType application/vnd.ms-word.document.macroEnabled.12 docm AddType application/vnd.openxmlformats-officedocument.wordprocessingml.document docx 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.openxmlformats-officedocument.presentationml.presentation pptx 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.openxmlformats-officedocument.spreadsheetml.sheet xlsx AddType application/vnd.ms-excel.template.macroEnabled.12 xltm AddType application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx