如何在 Ubuntu 12.10 中设置 mime 类型以进行.mp4
视频.ogv
渲染?我想通过本地主机运行简单的视频文件。请给出建议。
我已将以下三行保存在/etc/apache2/httpd.conf
文件中:
AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm
但是当我从路径运行 index.html 页面时,localhost/Ubuntu/index.html
它没有运行视频。我使用 html5 标签来运行视频。现在,问题可能是什么?我正在使用 Ubuntu 12.10 和 Lamp 服务器。
答案1
查看httpd
日志(错误日志:/var/log/apache2/error_log
,访问日志/var/log/apache/access_log
:)应该会有一些启发。
另外,为了验证 MIME 类型是否在响应中设置,您可以执行以下操作:curl -I http://localhost/path/to/file.ogv
,您将在Content-Type
响应标头中获得 MIME 类型。