Page redirection after logout in mvc

Solution 1:

[Authorize]
public class HomeController: Controller
{

    public ActionResult YourTable()
    {
        return View();
    }

}

Use Authorize in your controller

Another way of doing this is : disabling the cache for the entire application

Refer to this : After logout if browser back button press then it go back last screen