Cache Clearing Problem

Hello every one
Recently we have made some changes in website (JS & CSS file ) we are not be able to see that changes in our website as well as we want to clear all cache file from every single visited customer and give them new user experience

Kindly Provide best solutions

Thank You

append some sort of version number to the link in your html, eg

<script src="/wow.js"></script>

would become

<script src="/wow.js?v=1"></script>

this is called cache busting. It ensures every browser and cache has the most up-to-date version of a file.

This topic was automatically closed after 30 days. New replies are no longer allowed.