Web 服务器继续使用旧的 .js 文件,即使它已 removed/altered
Web server keeps using an old .js-file even after it have been removed/altered
我在 Ubuntu 16.04 上使用 LAMP 堆栈网络服务器 运行。在我的网站根目录 /public/
中,我有一些文件,但与我的问题有关的两个重要文件是:
index.html
main.build.js
该网页是单页应用程序。 index.html
"opens up" 通过 main.build.js
的 SPA,其中包含整个 SPA。但是,在我对 main.build.js
进行更改后,更改 不会 适用于网页的 main.build.js
.
我尝试过的:
- 尝试了多个浏览器
- 我已尝试清除浏览器的缓存和 cookie
- 打开我所做更改的 main.build.js 以确保它们存在(并且它们存在)
- 完全删除main.build.js(但它仍然出现在网页上!!!)
- 正在重新启动 Apache
- 正在重新启动计算机
Index.html:
<html lang="en">
<head>
<title>BiggerWe (Alpha)</title>
<meta charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet" type="text/css">
<script src="plotly-latest.min.js"></script>
</head>
<body>
<div id="app">
</div>
<script src="main.build.js"></script>
</body>
</html>
欢迎任何提示。谢谢!
根据这个 answered question,您需要禁用 LAMP 堆栈的 PageSpeed 功能,也许 php.ini
中的 OPCache 功能,方法是将 opcache.enable
从 1
设置为 0
我在 Ubuntu 16.04 上使用 LAMP 堆栈网络服务器 运行。在我的网站根目录 /public/
中,我有一些文件,但与我的问题有关的两个重要文件是:
index.html
main.build.js
该网页是单页应用程序。 index.html
"opens up" 通过 main.build.js
的 SPA,其中包含整个 SPA。但是,在我对 main.build.js
进行更改后,更改 不会 适用于网页的 main.build.js
.
我尝试过的:
- 尝试了多个浏览器
- 我已尝试清除浏览器的缓存和 cookie
- 打开我所做更改的 main.build.js 以确保它们存在(并且它们存在)
- 完全删除main.build.js(但它仍然出现在网页上!!!)
- 正在重新启动 Apache
- 正在重新启动计算机
Index.html:
<html lang="en">
<head>
<title>BiggerWe (Alpha)</title>
<meta charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet" type="text/css">
<script src="plotly-latest.min.js"></script>
</head>
<body>
<div id="app">
</div>
<script src="main.build.js"></script>
</body>
</html>
欢迎任何提示。谢谢!
根据这个 answered question,您需要禁用 LAMP 堆栈的 PageSpeed 功能,也许 php.ini
中的 OPCache 功能,方法是将 opcache.enable
从 1
设置为 0