I have a Google App Engine project running PHP 5.5. This is my app.yaml
:
application: example
version: 1
runtime: php55
api_version: 1
threadsafe: true
handlers:
- url: .*
script: main.php
All requests go to main.php
. My app only sends data for an Android application and thus doesn't need to display a favicon.ico
. But if I call my application in my browser (Chrome) and consult the app logs afterwards there is a request to favicon.ico
. How can I disable this or how can I tell App Engine to NOT SERVE a favicon?
EDIT: I can't just send some HTML to prevent the loading of the favicon, because I need to send JSON data to my application in which I can't include HTML.