문제

"A WebVTT file must consist of a WebVTT file body encoded as UTF-8 and labeled with the MIME type text/vtt." whatwg source: http://www.whatwg.org/specs/web-apps/current-work/webvtt.html

i figure i need to set .htaccess? i'm on apache/php/mysql.

도움이 되었습니까?

해결책

Replace AddDefaultCharset ISO-8859-1 with AddDefaultCharset UTF-8 in the Apache.conf file.

If using .htaccess for configuration use something similar to:

<Files unicode-example-intro.html>
AddType "text/html; charset=UTF-8" html
</Files> 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top