是否可以将域名指向我的Google云端硬盘?
答案 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
替换为公共文件的网址。