我正在尝试在按下某个按钮时清除我网站的缓存。我在if语句中添加了以下内容但是我一直陷入无限循环中。不知道为什么?这是我在if语句中回应的内容:
echo "<meta http-equiv=\"refresh\" content=\"0; mywebsitetest.org/ \" />";
echo "<meta http-equiv=\"pragma\" content=\"no-cache\">";
echo "<script type=" . "text/javascript" . ">";
echo "window.location.replace('mywebsitetest.org') </script>";
提前致谢。
答案 0 :(得分:3)
<meta http-equiv="refresh" content="0; mywebsitetest.org/ " />
在0秒内刷新页面。
window.location.replace('mywebsitetest.org')
还会在加载时刷新页面。
如果你的条件在重新加载后仍然存在,你将陷入一个无限的刷新循环。