-1

是否可以将域名指向我的 Google 驱动器?

4

1 回答 1

1

您可能可以在 PHP 中使用readfile来执行此操作。这是他们给出的例子:

<?php
    $file = 'monkey.gif';

    if (file_exists($file)) {
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename='.basename($file));
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        header('Content-Length: ' . filesize($file));
        ob_clean();
        flush();
        readfile($file);
        exit;
    }
?>

替换monkey.gif为公共文件的 URL。

于 2012-11-14T21:23:33.970 回答