I am a beginner with Flask and python. I want to create a handler function for paths that start with "/favicon". For example the following should be handled:
- /favicon
 - /faviconFOO
 - /favicon_bar
 - /favicon/buzz
 - /favicon1337
 
The following should not be handled:
- /favico
 - /favicoN
 - /whatever
 
If Flask supporeted wildcards, it would be "/favicon*"
EDIT: I don't need support for regular expressions.
How can I do this?