-1
是否可以將域名指向我的Google驅動器?是否可以將域名指向我的Google驅動器?
是否可以將域名指向我的Google驅動器?是否可以將域名指向我的Google驅動器?
你可以在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。
你在說什麼? – woz
我有一個Google帳戶,並且我在Google驅動器中有一些文件,是否可以將一個域名(www.something.com)指向此驅動器 以其他方式使用Google驅動器作爲虛擬主機 –
不,不是真的。如果您的網站是使用「」的公共文件,或者可能會對文件進行流式處理,但是我不知道您在服務器上使用的語言,則可以將您的網站重定向到該文件的網址。 – woz