How to redirect to 404 not found page prestashop


To redirect to 404 not found page properly add below code in your Prestashop controller file.

header('HTTP/1.1 404 Not Found');

header('Status: 404 Not Found');

Tools::redirect('index.php?controller=pagenotfound');

Post a Comment

0 Comments