lighttpd config and rewriting/disabling attempts to access favicon.ico
- by Kyle
I've got lighttpd and apache working together on an app I'm building. lighty is serving out static content. However, each time a static asset is requested, I see a not found: favicon.ico message in the logs. I have added the following url rewrite:
url.rewrite-once = (
"^/favicon.ico$" => "/assets/images/favicon.png"
)
But to no avail; still getting the message. Any ideas?