I have a problem with my index.php, i have this small script that decides what content to deliver
<?php $clase = $_GET['clase'];
if ($clase == empresa) {include ("empresa.php");}
elseif ($clase == productos) {include("productos.php");}
else {include ($_SERVER['DOCUMENT_ROOT']."/inicio.html"); }
?>
it works when i go to www.mysite.com/index.php
but when i go to www.mysite.com it doesnt and i cant just figure our why.