Version numbers in css and js links in HTML (refresh cache)

Version numbers in css and js links in HTML (refresh cache)

background
Search the keyword .htaccess cache in the search engine, and you can find many tutorials on setting up website file cache. By setting up, you can cache CSS, JS and other files that are not updated frequently on the browser side, so that every time a visitor visits your website, the browser can get CSS, JS, etc. from the browser cache instead of reading from your server. This speeds up the opening of the website to a certain extent and saves your server traffic.

question
Now the problem comes. The css and js caches set by .htaccess have an expiration time. If css and js have been cached in the visitor's browser, the browser will only read css and js from the cache before these css and js caches expire. If you modify css and js on the server, then these changes will not change in the browser of returning customers, unless the returning customer presses Ctrl + F5 to refresh your website page or manually clears the browser cache. A website has tens of thousands of visitors, many of whom are repeat visitors. You can’t ask every visitor to refresh the cache after updating the CSS. So how would you deal with this problem?

Method 1

Change the css file name: In fact, the solution to this problem is very simple. The cache marks the cached content through the file name. After you update the CSS file content of the website, just change the CSS file name. For example, the css call statement in the original html is as follows:


Copy code
The code is as follows:
<link rel="stylesheet" href="style.css" />

Just change the css file name:


Copy code
The code is as follows:
<link rel="stylesheet" href="index.css" />

Another way to change the css file name is to write the version number into the file name, such as:


Copy code
The code is as follows:
<link rel="stylesheet" href="index.v2011.css" />

After the css file is updated, just change the version number in the file name:


Copy code
The code is as follows:
<link rel="stylesheet" href="index.v2012.css" />

Method 2
Add a version number to the CSS file: In fact, it is a bit troublesome to modify the CSS file name every time the CSS file is modified. Then we can add a version number in the loading CSS statement (that is, the content after ? in the CSS link). For example, the css call statement in the original html is as follows:


Copy code
The code is as follows:
<link rel="stylesheet" href="style.css?v=2011" />

Just change the version number of the css file to 2012:


Copy code
The code is as follows:
<link rel="stylesheet" href="style.css?v=2012" />

It should be noted that some proxy cache servers will not cache resources containing "?" in the URL, so method 2 may cause your original cache function to fail. You can use method 1 instead.

Summarize

In fact, the question mark after the css file has no practical effect and can only be used as a suffix. If you use the question mark plus parameter method, you can add version number and other information, and refresh the browser cache at the same time. A small detail can bring us great convenience.

<<:  Solution to VMware virtual machine no network

>>:  In-depth analysis of the various backgrounds, usage scenarios and techniques of CSS

Recommend

Nodejs-cluster module knowledge points summary and example usage

The interviewer will sometimes ask you, tell me h...

React's reconciliation algorithm Diffing algorithm strategy detailed explanation

Table of contents Algorithmic Strategy Single-nod...

Use tomcat to set shared lib to share the same jar

As more and more projects are deployed, more and ...

Example of JSON output in HTML format (test interface)

To display the JSON data in a beautiful indented ...

Implementing Binary Search Tree in JavaScript

The search binary tree implementation in JavaScri...

How to add color mask to background image in CSS3

Some time ago, during development, I encountered ...

Detailed explanation of the 4 codes that turn the website black, white and gray

The 2008.5.12 Wenchuan earthquake in Sichuan took...

How to modify the user and group of a file in Linux

In Linux, when a file is created, the owner of th...

Detailed examples of Linux disk device and LVM management commands

Preface In the Linux operating system, device fil...

Example of how to implement value transfer between WeChat mini program pages

Passing values ​​between mini program pages Good ...

Native js implements custom scroll bar component

This article example shares the specific code of ...

Analysis of the principle of Mybatis mapper dynamic proxy

Preface Before we start explaining the principle ...

JavaScript type detection method example tutorial

Preface JavaScript is one of the widely used lang...