I am hosting our website on IIS 8.5 on windows 2012 server
. The application is a nodejs based application. It has index.html as the entry point.
What I want is:
Whenever index.html is requested, I want to append a random string to this page. The idea is to bust the cache by appending query string.
What is the simplest way to achieve this? Should I use URL rewrite module? I looked at this post . This guy is adding some static query string. I want to add some dynamic/random query string. It could be time stamp or anything.