This question already has an answer here:
- Headers already sent by PHP 10 answers
I've tried several combinations for a PHP redirect but to no success unfortunately.
I've already looked at the in-depth answer above, but I really don't want to use a Javascript redirect nor a HTML one.
The code I have so far is:
} else {
ob_start();
// 'Sorry, page cannot be found!';
exit(header('Location: /404.html', true, 302));
ob_end_flush();
}
I've tried it without the ob_start/end and the exit function after the header, but to no success.
The error message I'm getting is:
PHP Warning: Cannot modify header information - headers already sent by (output started at /header.php:68) in /index.php on line 22.
Line 22 is: exit(header('Location: /404.html', true, 302));