I am trying to put the Google Webmaster Tools html verification file into my Sinatra web application.
So far, I have tried a few methods, including simply adding the file to the root directory, and then adding the file to my views directory, and finally by keeping my file in my views directory, but including the following in my server.rb file:
get 'googlee35f528f82dc08c.html' do
erb :googlee35f528f82dc08c
end
Currently, when I visit the site at mysite.com/googlee35f528f82dc08c.html
it simply says Not Found
. How can I add Google's Webmaster Tool's verification HTML file to my Sinatra web application in such a way that it will be found when I visit mysite.com/googlee35f528f82dc08c.html
?
Thank you!