using System.Web.Mvc; namespace WebInterface.Controllers { public class SessionsController : Controller { // GET: Sessions public ActionResult Index() { return RedirectToActionPermanent("Index", "Search"); } } }