STHUDY

Results 2 comments of STHUDY

我也遇到过这个问题,最后发现是缓存问题,不留缓存就好了 ` header("Pragma: no-cache"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("HTTP/1.1 301 Moved Permanently"); header("Location: " . ${aimUrl}); `

@Binaryify 这样? ``` header("HTTP/1.1 301 Moved Permanently"); header("Location: " . ${aimUrl} . "?time=" . strval(time())); ``` 这两种方式有什么区别呢? 拜托大佬简单介绍一下