我有一个我无法解决的问题。
我在.htaccess
中使用RewriteEngine来访问某些视频。我需要导出它们以便在android
中使用。
我的.htaccess:
RewriteRule ([^/]*)\.amr$ api.php?cmd=getmp3&hash=$1 [L]
在api.php
$__GB->getSafemp3($_GET['hash']);
功能代码:
header('Content-Type: video/3gpp');
header('Content-Disposition: inline; filename=' . $fetch['new_name']);
header('Content-length: '.filesize($path));
header("Content-Transfer-Encoding: binary");
readfile($path);
网址直接完美,但不是RewriteRule
编辑: 我已经解决了这个问题,我更改了这个功能代码:
header('Location: ' . $path.$fetch['new_name']); //$path.$fetch['new_name'] is the file directory, ex: /music/audio.3gp