I have placed an index.html
file in the public
directory of my Rails 4 application but it still shows this deleted file as rails welcome page. I am using Webrick in development mode. I have another app almost identical in setup which works fine.
Rails application not displaying index.html in development mode
3k Views Asked by markhorrocks At
3
There are 3 best solutions below
1

Rails 4 uses dynamic index.html. Read on http://blog.remarkablelabs.com/2012/12/dynamic-index-html-rails-4-countdown-to-2013
As written above, Rails 4 has removed the default index.html page in the /public folder. If you want to achieve the functionality anyway, you have to render the page manually. Just create a controller, and render the index page in your chosen controller action like this:
EDIT: If you want to serve the files without using the Rails stack, you have to configure your Web server (Apache/Nginx/whatever) to do so. Configurations for Nginx and Apache. Additionally, you have to disable Rails' static file rendering in your configuration by setting
serve_static_assets
to false:So, if you want to use this in development mode, set
config.serve_static_assets
to false inenvironments/development.rb
.