I have a site that makes use of GET variables to determine what to display.
@session_start();
@extract($_GET);
@extract($_POST);
.
.
.
if (!$menu) { include("home.php"); }
if ($menu=='buy') { include("buy.php"); }
if ($menu=='invalidbuy') { include("invalidbuy.php"); }
if ($menu=='buydone') { include("buydone.php"); }
.
.
.
I think I have to make use of the .htaccess file to rename my URLs from "/index.php?menu=faq" to "/faq". How can I do this??