直接链接访问,但由mysql / php跟踪?

时间:2013-03-29 09:34:19

标签: php mysql .htaccess

我有一个指向我想要提供给访问者的文件的直接链接,例如:

http://www.mydomain.com/mynewmix.mp3

当上面的链接被ping /命中/下载时,有什么办法可以运行以下查询吗?

UPDATE `db` SET `downloaded`=`downloaded`+1 WHERE `url`='http://www.mydomain.com/mynewmix.mp3'

非常感谢我能得到的任何帮助。非常感谢你。

3 个答案:

答案 0 :(得分:2)

是的,这是可能的。你可以在apache中使用重写模块。所以你可以说对于所有(mp3)文件服务器不应该返回mp3文件,而是运行一个执行查询并返回mp3文件的php文件/脚本。

这可能会对您有所帮助:http://www.workingwith.me.uk/articles/scripting/mod_rewrite

你的.htaccess文件中的

RewriteEngine on
RewriteRule ^\.mp3$ index.php [L]

这会将所有以.mp3结尾的链接发送到index.php(实际上它仍然是相同的链接,但会执行index.php)

你有其他选择:

RewriteRule ^.*/(\w)*\.mp3$ index.php?filename=$1 [L] 

这将使用带有文件名的GET可验证文件名执行index.php 例如。 $_GET['filename'] = "filename"(当文件:filename.mp3时)

在index.php中

让用户下载mp3文件(参见:Can I serve MP3 files with PHP?):

header("Content-Transfer-Encoding: binary"); 
header("Content-Type: audio/mpeg, audio/x-mpeg, audio/x-mpeg-3, audio/mpeg3");
header('Content-length: ' . filesize("[file location eg: /home/files/sometrack.mp3]"));
header('Content-Disposition: attachment; filename="sometrack.mp3"');
header('X-Pad: avoid browser bug');
header('Cache-Control: no-cache');
readfile("[file location eg: /home/files/sometrack.mp3]");
exit();

您可以使用以下代码动态执行此操作:

$fileName = $_GET['filename']."mp3"; //we stripped .mp3 in the apache rewrite (might not be so smart)
$fileLocation = "/your/location/".$filename;
header("Content-Transfer-Encoding: binary"); 
header("Content-Type: audio/mpeg, audio/x-mpeg, audio/x-mpeg-3, audio/mpeg3");
header('Content-length: ' . filesize($fileLocation));
header('Content-Disposition: attachment; filename="'.$fileName.'"');
header('X-Pad: avoid browser bug');
header('Cache-Control: no-cache');
readfile($fileLocation);
exit();

您可以通过以下方式访问请求的链接:

$_SERVER['REQUEST_URI'];

或新的(生成的网址):

$_SERVER['REDIRECT_URL'];

答案 1 :(得分:1)

我认为还有另一种方法可以满足您的需求:

  1. 创建一个新的php文件“download”以开始下载参数 内容看起来像这样(日期和时间是获取我的mp3文件的关键):

    <?php
        if (isset($_GET['date']) && is_string($_GET['date']) && isset($_GET['time']) && is_string($_GET['time']))
        {
            require_once($_SERVER['DOCUMENT_ROOT'] . "/bin/functions.php");
            DownloadFile($_GET['date'],$_GET['time']);
        }
    ?>
    
  2. 使用“DownloadFile”函数创建一个不同的php文件“functions.php”:

    function DownloadFile($Date,$Time)
    {
        require('connection.php');
        mysql_select_db($database, $instance);
    
        $qry = "
            UPDATE `table` 
            SET `Field1` = `Field1` + 1
            WHERE `Field2` = '$Date' AND `Field3` = '$Time'
            ";
        $result = mysql_query($qry, $instance) or die(mysql_error());
    
        header('Content-type: Application/mp3');
        header("Content-Length: " .(string)(filesize($file)));
        header('Content-Disposition: attachment; filename=' . $file);
        readfile($file);    
    

    }

  3. 使用不同的网址进行下载(无锚)

  4. http://www.yoursite.com/xxx/download.php?date=2000-01-01&time=12:00:00

答案 2 :(得分:0)

是的,你可以这样做。点击url需要调用ajax来成功运行更新查询,然后继续下载文件。