6

Here is what I am trying.

<%= image_tag 'favicon.ico', rel="icon" type="image/x-icon" %>

Oliver Howes
  • 161
  • 1
  • 3
  • 9
  • 4
    Possible duplicate of [How to add favicon in rails 3.2](http://stackoverflow.com/questions/9901910/how-to-add-favicon-in-rails-3-2) – Pavan Jan 23 '16 at 16:24

2 Answers2

17

Try add

<%= favicon_link_tag 'favicon.ico' %>

in head section in your application.html.erb

Igor Ivancha
  • 3,413
  • 4
  • 30
  • 39
1

How about using favicon_link_tag helper method instead?

<%= favicon_link_tag 'favicon.ico' %>
Omnigazer
  • 831
  • 4
  • 7