background question Method 1 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 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 |
<<: Solution to VMware virtual machine no network
>>: In-depth analysis of the various backgrounds, usage scenarios and techniques of CSS
The interviewer will sometimes ask you, tell me h...
Table of contents Algorithmic Strategy Single-nod...
As more and more projects are deployed, more and ...
To display the JSON data in a beautiful indented ...
The search binary tree implementation in JavaScri...
Some time ago, during development, I encountered ...
I was playing with CentOS in a VMware virtual mac...
The 2008.5.12 Wenchuan earthquake in Sichuan took...
As a super rookie, I just started learning MySQL ...
In Linux, when a file is created, the owner of th...
Preface In the Linux operating system, device fil...
Passing values between mini program pages Good ...
This article example shares the specific code of ...
Preface Before we start explaining the principle ...
Preface JavaScript is one of the widely used lang...