During my experience with ESP8266 WiFi Module to setup a web server, I hit the problem that every request from browser ends up in two requests; one is the request I actually made and the other one is something to do with modern browsers looking for an icon to show in the web address bar.
Quick googling on "favicon.ico" told me that browsers automatically generates “GET /favicon.ico” request with user's every actual request. There is almost no way to stop browsers' “GET /favicon.ico” request unless providing a proper "favicon.ico" file to satisfy their request.
So, I did some coding to send my "favicon.ico" to browser when I get such “GET /favicon.ico” request, as seen below:

Sample code can be found on the link below:
http://blog.toganteknoloji.com.tr/
For further queries email me kemalbaykar@gmail.com.
Regards.