在php

时间:2015-09-09 09:26:00

标签: php android .htaccess mod-rewrite

我有一个我无法解决的问题。 我在.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

0 个答案:

没有答案