2012-11-13 42 views
-1

是否可以將域名指向我的Google驅動器?是否可以將域名指向我的Google驅動器?

+1

你在說什麼? – woz

+0

我有一個Google帳戶,並且我在Google驅動器中有一些文件,是否可以將一個域名(www.something.com)指向此驅動器 以其他方式使用Google驅動器作爲虛擬主機 –

+0

不,不是真的。如果您的網站是使用「」的公共文件,或者可能會對文件進行流式處理,但是我不知道您在服務器上使用的語言,則可以將您的網站重定向到該文件的網址。 – woz

回答

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。

相關問題