[ 一日30分 인생승리의 학습법] 웹서버의 mht 파일 웹 배포 how to load by browser remote mht file // Reading .mht webpages from server
2023.06.05 20:35
[ 一日30分 인생승리의 학습법] 웹서버의 mht 파일 웹 배포 how to load by browser remote mht file // Reading .mht webpages from server
[Question]
We have some .mht files which load fine from local files but when loaded from the remote webserver display as junk text.
What can I do to make them work correctly from our webserver?
[answer]
You probably have to enter this in your root's .htaccess file:
<IfModule mod_mime.c>
# MIME HyperText Markup Language (MHTML) markup
AddType text/html .mhtml .mht .maff .maf
AddType message/rfc822 .mhtml .mht
AddType multipart/related .mhtml .mht .maff .maf
</IfModule>
Comment out lines with # for those you don't need. Good luck.
[출처] https://webmasters.stackexchange.com/questions/48469/reading-mht-webpages-from-server
본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.

