在生产模式下找不到网站图标

发布于 2025-01-03 19:12:10 字数 294 浏览 1 评论 0原文

Firefox 在生产模式下找不到我的 Rails 3.1 应用程序的图标。在开发模式下运行,它可以工作。

我浏览到两种模式的 URL localhost:4000/favicon_stand.ico。 该图标位于我的应用程序的公共文件夹中。我不使用资产管道。 我使用 WEBrick 分别使用 rails s -p 4000 -e productionrails -p 4000 启动服务器。

为什么在开发模式下是 for 而在生产模式下却不是 for ?

Firefox does not find the favicon of my Rails 3.1 app in production mode. Running in development mode, it works.

I browse to the URL localhost:4000/favicon_standing.ico for both modes.
The favicon is located in my public folder of my app. I do not use the asset pipeline for it.
I start the server using rails s -p 4000 -e production and rails s -p 4000, respectively, using WEBrick.

Why does is for in development mode, but not in production mode?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

残月升风 2025-01-10 19:12:10

我会尝试将文件名更改为“favicon.ico”,看看是否有帮助。虽然它不是必需的,但它是默认的命名约定,如果您使用其他名称,则必须在头部添加一些 html:

<link rel="shortcut icon" href="http://www.my-domain.com/myfavicon.ico" type="image/x-icon" />

以下是一些谷歌搜索显示的内容:
http://www.make-a-favicon.com/favicon_FAQs.htm #Are_all_favicon_files_named_favicon.ico

I'd try changing the name of your file to 'favicon.ico' and see if that helps. While its not required, its the default naming convention and if you're using another name, you have to add some html to your head:

<link rel="shortcut icon" href="http://www.my-domain.com/myfavicon.ico" type="image/x-icon" />

Here's what some googling shows:
http://www.make-a-favicon.com/favicon_FAQs.htm#Are_all_favicon_files_named_favicon.ico

穿透光 2025-01-10 19:12:10

有一个帮助程序可以帮助

<head>
...
<%= favicon_link_tag %>
<!-- you can skip the name of file if it is favicon.ico  -->
...
</head>

您完成此操作,您只需将您的网站图标放入 assets/images/ 文件夹并重新编译资产

there is a helper for this

<head>
...
<%= favicon_link_tag %>
<!-- you can skip the name of file if it is favicon.ico  -->
...
</head>

all you need is to place your favicon to assets/images/ folder and recompile assets

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文