尝试了很多解决问题的解决方案,但不是,我面临的问题是视频正在上传并存储到数据库中,但在查看时显示的内容如此No video with supported format and mime type found
。
代码看起来像这样
<video width="228" height="180" controls>
<source src="<?php echo base_url();?>uploads/videos/170523a.mp4" type="video/mp4" />
<source src="<?php echo base_url();?>uploads/videos/170523a.webm" type="video/webm" />
</video>
在.htaccess文件中我包含了这样的
AddType video/mp4 mp4 m4v f4v f4p
AddType video/ogg ogv
AddType video/webm webm
AddType video/x-flv flv
RewriteEngine on
RewriteBase /zara/
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
#Allow from 122.252.226.125
#Deny from all
想要从中得到解脱,请帮助我摆脱这个