Yanlışım nerde bakarmısınız


Link bu şekilde
echo '<a href="Kategori-'.$play["seocat"].'/" title="'.$play["cattitle"].'">'.$play["cat"].'</a><br />\n';
Htaccess bu şekilde
RewriteEngine on
RewriteBase /

RewriteRule ^/Kategori-(.*?)/ Categori.php?Cat=Categori&Seolink=$1

Categori.php bu şekilde
<?php
include_once("ComeBaby.php");
	if($_GET["Cat"]=="Categori"):
	$SeoCat = $_GET["Seolink"];
	$Go2 = mysql_query("SELECT * FROM categories WHERE seocat='$SeoCat'");
	$play2 = mysql_fetch_array($Go2);
	$id = $play2["id"];
	echo $id;
	endif;
?>