我正在尝试在IIS-8中返回默认的404错误页面。我正在使用此代码:
// Return 404 in case no product was found
if($product_index == -1) {
header('HTTP/1.0 404 Not Found');
exit;
}
此代码以404错误响应,但页面只是空白 有没有办法使用PHP包含默认的404错误页面?
答案 0 :(得分:0)
只需再次添加标题即可重定向到404页面,如下所示:
// Return 404 in case no product was found
if($product_index == -1) {
header('HTTP/1.0 404 Not Found');
header("Location: http://yoursite/404.php");
exit;
}
如果您仍然因IIS-8而遇到麻烦,那么您可以关注Custom 404 error page not working on IIS 8.5