Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

node.js - Express js prevent GET /favicon.ico

In every request, my server is receiving GET request to /favicon.ico, even when it's REST api that not include html file. Why is this happening and how can I prevent this request?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Browsers will by default try to request /favicon.ico from the root of a hostname, in order to show an icon in the browser tab.

If you want to avoid this request returning a 404, you can either:

  • Supply a favicon.ico file that is available at the root of your site.
  • Use a module such as serve-favicon to point requests to a specific file.
  • Catch the favicon.ico request and send a 204 No Content status:

    app.get('/favicon.ico', (req, res) => res.status(204));


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...