From 2649b1a40f165832593df5b4b021fd3aa5a2ccd3 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Fri, 25 Nov 2005 13:36:14 +0100 Subject: option to send 404 header for missing pages darcs-hash:20051125123614-7ad00-42e0ab6a594e177603175ee37467fc2bdd45d2cb.gz --- doku.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doku.php') diff --git a/doku.php b/doku.php index 7913354f7..d6da8b1d0 100644 --- a/doku.php +++ b/doku.php @@ -53,6 +53,11 @@ //make infos about the selected page available $INFO = pageinfo(); + //send 404 for missing pages if configured + if($conf['send404'] && !$INFO['exists']){ + header('HTTP/1.0 404 Not Found'); + } + //prepare breadcrumbs (initialize a static var) breadcrumbs(); -- cgit v1.2.3