I am trying to make our web application more secure. So, want to prevent browser from caching session id of the application.
Our index.html already has meta tags as follows:
<meta http-equiv="Pragma" content="no-cache, no-store">
<meta http-equiv="Expires" content="-1">
But, this is not just sufficient.
Tried to include some other meta tags like:
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE" />
<meta http-equiv="Expires" content="0">
but not able to achieve it.
Can any one help me with some other possible solution.