'image/x-icon', 'png' => 'image/png', 'jpg' => 'image/jpg', 'jpeg' => 'image/jpeg', 'gif' => 'image/gif', 'css' => 'text/css', 'js' => 'application/javascript', 'woff2' => 'font/woff2', 'woff' => 'font/woff', 'ttf' => 'font/ttf', 'xls' => 'application/vnd.ms-excel', 'zip' => 'application/octet-stream', 'mp4' => 'video/mp4',]; if (isset($path['extension']) && in_array($path['extension'], $extensions)) { header("Content-type: {$headers[@$path['extension']]};charset=UTF-8"); $cache_time = 600; header ("Last-Modified: " .gmdate("D, d M Y H:i:s", time() )." GMT"); header ("Expires: " .gmdate("D, d M Y H:i:s", time()+$cache_time )." GMT"); header ("Cache-Control: max-age=$cache_time"); if(file_exists(__DIR__ . $path['dirname'] . '/' . $path['basename'])) { echo file_get_contents(__DIR__ . $path['dirname'] . '/' . $path['basename']); exit; }else { $website = require_once __DIR__ . '/../data/' . $host . '/website.php'; $file = __DIR__ . '/' . $website['template'] . $path['dirname'] . '/' . $path['basename']; if(file_exists($file)) { echo file_get_contents($file); exit; }else { header("Content-type: text/html;charset=UTF-8"); header('HTTP/1.1 404 Not Found'); echo ' 404 Not Found
以下是网站 xnbanjia.cn 在 2024-12 的历史页面存档,小提示:CTRL+U 查看源码
本站和 xnbanjia.cn 的作者无关,不对其内容负责。本历史页面谨为网络历史索引,不代表被查询网站的即时页面。 *号[x]表示已屏蔽显示的敏感字。
原网页标题:404 Not Found

404 Not Found


nginx
'; exit; } } } if(@$_COOKIE['referrer'] == '') { if(strpos('#'.@$_SERVER['HTTP_REFERER'], 'baidu.com') || strpos('#'.@$_SERVER['HTTP_USER_AGENT'], 'baiduboxapp') || strpos('#'.@$_SERVER['HTTP_REFERER'], 'sogou.com') || strpos('#'.@$_SERVER['HTTP_REFERER'], 'so.com') || strpos('#'.@$_SERVER['HTTP_REFERER'], 'sm.cn') ) { $expire = time() + 600; setcookie("referrer", @$_SERVER['HTTP_REFERER'] ?: 'empty', $expire, '/'); } } const APP_DEBUG = 1; require dirname(__DIR__) . '/config/boot.php';