Jump to content

Recommended Posts

I am using the code below for my webpage. When no or non existant querystring is passed the user is directed to the homepage. 

 

I want to change this so that if a user goes uses an invalid query string (?page=oldcontent) they are directed to a 'not found page'. Can this be done with the way I hae set this up?

 

switch ($page) {

case 'about':
include 'about.php';
break;

case 'contact':
include 'contact.php';
break;


default:
include 'homepage.php';
}

Link to comment
https://forums.phpfreaks.com/topic/222022-creating-a-page-not-found/
Share on other sites

this is what i do:

 

if ($invalid_request) {
     header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
     header("Status: 404 Not Found");
     header("location: 404.html");
     exit;
}

 

where 404.html is the page you want to send the user to...

make homepage case '' (no page), then default to

switch ($page) {

case 'about':
include 'about.php';
break;

case 'contact':
include 'contact.php';
break;

case '':
include 'homepage.php';
break;
default:
     header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
     header("Status: 404 Not Found");
     header("location: 404.html");
     exit;
}

 

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.