Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.
IIS 6 doesn't handle extensionless URLs. You'll need to change your routes to use the .mvc extension.
For example,
routes.Add(new Route("Links.mvc/{categoryName}",...
Make sure that IIS 6 maps .mvc to the aspnet_isapi.dll.
Remember Me