when my visitors goto the first page (index.php) i want there to be a script at the beginning to basically say "If the address does not have a assigned page ($page), then redirect to (index.php?page=home&sub=zero)"
any ideas... this is what i was thinking...
Code:
if ($page != 'aboutus') { header('index.php?page=home&sub=zero'); }
but that doesn't seem to work!
