Quote:
To include a reBOOT version of a 404 page
As it currently stands, the 404 page is just the standard 'out of a box' XC error page.
|
You could in fact use any static page as a 404 page.
Edit /include/func/func.core.php
After...
Code:
@header("HTTP/1.0 404 Not Found");
Insert...
Code:
header('Location: http://www.yourstore.com/pages.php?pageid=1');
Replace the URL and pageid=1 with your static page ID.