是否可以将域名指向我的Google云端硬盘?

时间:2012-11-13 20:41:09

标签: dns share google-drive-api domain-name

是否可以将域名指向我的Google云端硬盘?

1 个答案:

答案 0 :(得分: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替换为公共文件的网址。