![]() |
|
首页 │ Apache │ Linux│ Java│ MySQL│ 注册│帮助 | |||
相关问题
我们常常使用header("location:someurl")来跳转.
但我希望someurl能够被缓存,所以希望header-cache.
然而header-cache放在header-location之前是没效果的.
<?php
header-cache;
header-location
?>
除非
<?php
header-cache;
readfile(someurl);
?>
------------
那么,如何让header-location之前的header起效呢?
提问者:axgle 08-18 11:11
答复

