开发者

Customized 404 not found with PHP

I am using the following code to display a cutom 404 not found with PHP:

header("HTTP/1.开发者_JAVA技巧0 404 Not Found");
header("Status: 404 Not Found");
include('404.php');
exit();

However, the default browser's 404 page shows up. What is the right code for producing 404 while including a PHP file?

Thanks,

Joel


However, the default browser's 404 page shows up. What is the right code for producing 404 while including a PHP file?

Some browsers (namely IE and Chrome) show their own 404 page when the size of the page that was output is less than 512 bytes.

Pad your output to go beyond that. I like to use some nice ASCII art.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜