I'm trying to setup favicon on IE, since I allways get the warnings saying that it's not being accessed.
2017-03-06 19:43:25 Error: [Cake\Routing\Exception\MissingControllerException] Controller class Favicon.ico could not be found.
On other browsers, they are working no problem.
I have the following code
<link rel="icon" type="image/x-icon" href="url/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/x-icon" href="url/favicon/favicon-16x16.png" sizes="16x16">
<link rel="shortcut icon" href="url/favicon/favicon-16x16.png" type="image/x-icon">
Yet, it stills gives the error.
Any ideias?
Thanks everybody for the answers
Fixed the problem with routes
Router::redirect(
'/favicon.ico',
'url.ico', array('status' => 302)
);