在生产模式下找不到网站图标
Firefox 在生产模式下找不到我的 Rails 3.1 应用程序的图标。在开发模式下运行,它可以工作。
我浏览到两种模式的 URL localhost:4000/favicon_stand.ico
。 该图标位于我的应用程序的公共文件夹中。我不使用资产管道。 我使用 WEBrick 分别使用 rails s -p 4000 -e production
和 rails -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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会尝试将文件名更改为“favicon.ico”,看看是否有帮助。虽然它不是必需的,但它是默认的命名约定,如果您使用其他名称,则必须在头部添加一些 html:
以下是一些谷歌搜索显示的内容:
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:
Here's what some googling shows:
http://www.make-a-favicon.com/favicon_FAQs.htm#Are_all_favicon_files_named_favicon.ico
有一个帮助程序可以帮助
您完成此操作,您只需将您的网站图标放入
assets/images/
文件夹并重新编译资产there is a helper for this
all you need is to place your favicon to
assets/images/
folder and recompile assets