-1

I need the following help:

Force homepage index.php to redirect to index.php?page=xx

How?

Giacomo1968
  • 25,759
  • 11
  • 71
  • 103
DGAP
  • 1
  • 2

1 Answers1

1

You could use this to redirect the users to the page you wish:

/* Redirect browser */
header("Location: http://theos.in/");
Victor York
  • 1,621
  • 4
  • 20
  • 55
  • ` if(!isset($_GET["page"]){ echo ";" ?>}` this checks to see if the get page variable exists. if it doess not... it will redirect to the page you want but you have to set the page value or it WILL keep looping – Dnaso Jan 05 '14 at 19:48