ok şimdilik sorunu çözdüm..........

öğrenme amalı bir deneme yaptım ama url leri .html yapamadım.
localhostta edenedim olmadı bende servere atayıp deneyeyim dedim yine olmadı.
http://www.thatinternetcafe.com/index.php?action=home

index.php sayfam
<?
$ACTIONS = <<<EOF
<DIV align=center>
<A href="index.php?action=home">home</A> - 
<A href="index.php?action=ders">Choose Lesson</A> - 
<A href="index.php?action=ogrenci">Students register</A> - 
<A href="index.php?action=not">Add Note</A> - 
<A href="index.php?action=liste">List</A>
</DIV>
EOF;
echo $ACTIONS;
$action=$_REQUEST ['action'];
switch ($action)
{
default:echo "home";break;
case "ders":echo "dersler";
$ders = <<<EOF
<DIV align=center>
<A href="index.php?action=ders&sayfa=mat">matematik</A> - 
<A href="index.php?action=ders&sayfa=kim">kimya</A>
</DIV>
EOF;
echo $ders;
break;
case "ogrenci":echo "öğrenciler";
$ogrenci = <<<EOF
<DIV align=center>
<A href="index.php?action=ogrenci&sayfa=ad">isimler</A> - 
<A href="index.php?action=ogrenci&sayfa=no">numaralar</A>
</DIV>
EOF;
echo $ogrenci;
break;
}
.httacces sayfam:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /sef/
RewriteRule type(.*)/(.*).html$ /index.php?action=$1&sayfa=$2