0
unlink(...../runtime/cache/f4/197ca1ec1d07bf4facace9aa0ac2f2.php): No such file or directory
建议在thinkphp\libary\think\cache\driver\File.php 300行unlink方法修改为这样 private function unlink($path) { if (file_exists($path)) { return unlink($path); }else{ return true; } // return is_file($path) && unlink($path); }