Design and implement routes

You are developing an ASP.NET MVC application. You noticed a bug on the DVD controller of the application. You want to ignore the DVD pages until the bug is fixed. What should you do?

Add route.IgnoreRoute(“dvd/”); to the RegisterRoute method.
Add route.Remove(“dvd/”); to the RegisterRoute method.
Add route.SetItem(route.Count, “dvd/”); to the RegisterRoute method.
Add route.Insert(route.Count,“dvd/”); to the RegisterRoute method.