我把我的 favicon.ico 放在我的公用文件夹中,它显示在我的本地主机上,但是当我在互联网上查看它时,它却出现了。我的应用程序通过 heroku 托管,域由 hover 提供。这是哪里失败了?
此外,如果这有帮助,这里是我用来呈现网站图标的代码:
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="/favicon.ico" />
<title>Shoulak Predictions</title>
<%= stylesheet_link_tag 'application', media: 'all' %>
<%= javascript_include_tag 'application' %>
<%= csrf_meta_tags %>
<%= render 'layouts/shim' %>
</head>
<body>
<%= render 'layouts/header' %>
<div class="container">
<% flash.each do |key, value| %>
<div class="alert alert-<%= key %>"><%= value %></div>
<% end %>
<%= yield %>
</div>
<div class="container">
<%= render 'layouts/footer' %>
<%= debug(params) if Rails.env.development? %>
</div>
</body>
</html>
更新
如果我去mydomain.com/favicon.ico
,我会下载我上传的网站图标。另外,如果我去therealapp.herokuapps.com
,它会出现。我认为我的域名提供商可能会提供自己的域名?