我的應(yīng)用程序部署在http://www.nepathya.com.但是當(dāng)生成 URL 鏈接作為電子郵件的一部分時(shí),基本 url 是localhost.public function handle(User $user){ foreach($this->mail_details as $email=>$token) { $user_name = $user->getUserName($email); $url = URL::to('/').'/dmf/task?token='.$token; Mail::to($email)->send(new SendEmailMailable($url, $user_name)); }}這似乎不是其他的問題servers。此外,當(dāng)我從其他地方輸出值時(shí)URL::to('/'),它會輸出正確的基本 url,即http://www.nepathya.com.
laravel URL::to('/') 在部署服務(wù)器中返回 localhost 作為基本 url
叮當(dāng)貓咪
2022-10-14 15:59:38