• 22-12-2007, 14:20:46
    #1
    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
  • 22-12-2007, 17:25:53
    #2
    Alıntı
    <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>
    şu linkler için şunu kullansan olur herhalde


    Alıntı
    RewriteEngine On
    RewriteBase /
    RewriteRule ^home.html$ index.php?action=home [L,NC]
    RewriteRule ^ders.html$ index.php?action=ders [L,NC]
    sanırım burası böyle. ben htaccess bilgim yok ama denemiştim çalımıştı.