Django 1.7, python 3.4, IE8
I am working on a Django project where user is authenticated against window active directory instead of Django db.
User must be authenticated to see other pages. I use @cache_control(no_cache=True, must_revalidate=True, no_store=True) on my all pages to prevent caching. When user clicked on "logout", the back button will be expired on Firefox and Chrome but will work on IE8.
Clients will access this app only from IE8. Is there any way to prevent showing previous pages after user has logout and press back button?
Note that I have redirect logout page back to login, but when user click on back button, all those cached pages will still show in IE8.
Any comments are welcome and appreciated!