1
我將一個站點文件複製到測試主機以供進一步開發。Drupal:更改上傳文件的路徑
我想要從舊主機加載上傳的文件。
例如,文件存儲在drupal_folder/sites/default/files /(example.com/sites/default/files)中。
我需要這個文件是從其他網站獲得(example.dev.com)
我的意思是我想改變路徑的所有文件在新主機上(example.dev.com)。
我試着用命令來更改路徑的所有文件在數據庫
UPDATE `files` SET `filepath` = REPLACE(`filepath`, "sites/default/files/", "http://example.dev.com/sites/default/files/");
但網址等之後example.dev.com/http://example.dev.com/sites/default/files/這個。
我希望這樣做。
我該怎麼辦?