Forum Moderators: phranque
if exists($what) then {
create and output the page content (using the database records)
}
elseif marked-as-replaced-in-database($what) then {
create and output 301-Moved Permanently status response and Location header
}
elseif marked-as-deleted-in-database($what) then {
create and output 410-Gone status response and page content
}
elseif no-database-entry-exists($what) then {
create and output 404-Not-Found status response and page content
}
endif