Misafir adlı üyeden alıntı: mesajı görüntüle
.htaccess dosyası

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ user.php?nickname=$1 [QSA,L]
user.php

$nickname = $_GET["nickname"];
veri tabanından ilgili üyeyi çekip bilgilerini sayfaya yazacaksınız


veya

.htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
index.php

<?php    

$url = explode('/', $_SERVER['PHP_SELF']);

switch ($url[3]) {

    case 'hakkimizda':
    
    include('pages/about.php');

    break;
    
    default:

    include('pages/user.php');

    break;
}
?>
teşekkür ederim hocam