I have the following in my MVC routing file:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" });
Can someone explain to me what these are used for? Also do they need to appear before the MVC and WebAPI routes ?