Have a look at this - it may be the 'perfect' alround solution, using a samll script in a customised 404 error page:
http://vbulletin.com/forum/showthrea...threadid=21723
Here's the key stuff if you can't be bothered to read all:
Quote:
that 404 is not complex, I think that's the best content management system...a lot of hosts let you do a custom 404, but most of us will have their own server/clients server for their files I think?
now the script I posted here has nothing to do with the 404 thing, the 404 is just a few lines, you just put
header("Status: 200 OK"); before any html, and then you do:
$url = explode("/",$REQUEST_URl);
$page=$url[1];
then you check if that content exists
$content = mysql_query("SELECT content FROM content WHERE page=$page");
if (!$content) header ("HTTP/1.0 404 Not Found"); (wich will override the status: 200 OK)
and then you just put the content there!! I didn't test this, but I'm planning to use this if nobody else knows a better content management system, but I believe this is the way it's done. There are peeps using this, so it does work, just not sure all my code is correct ;D
|