H
hibrahim
Misafir
cat.php?id=2 gibi linklerin indexlenmesi
arkadaşlar bunun bir çözümü yokmu biz bu tip sayfaları nasıl indexleteceğiz biraz araştırdıma damın biri bir çözüm bulmuş ama onu nasıl uygulayacağız? anlayan yada daha öncedne bnilen biri varmı varsa lütfen paylaşalım.. teşekkürler..
.htaccess
<Files categorie>
ForceType application/x-httpd-php
</Files>
categorie
if(isset($_SERVER["REQUEST_URI"]))
{$temp = explode("/",$_SERVER["REQUEST_URI"]);
if (substr_count($temp[2],'.')>0) $temp = explode(".",$temp[2]); else $temp[0]=$temp[2];
if (substr_count($temp[0],'-')>0) {$temp = explode("-",$temp[0]);$resultpage=$temp[1];} else $resultpage=1;
$id=$temp[0];
settype($id,'int');}
else {$id=1;$resultpage=1;}
if ($id<1) $id=1;
elseif ($id>22) $id=22;
So if I have
/categorie/4.htm then id=4 and resultpage=1
/categorie/4-2.htm then id=4 and resultpage=2
aslında ne demek istediğini ve yapmak istediğini anladım ama nasıl uygulayacağız???
arkadaşlar bunun bir çözümü yokmu biz bu tip sayfaları nasıl indexleteceğiz biraz araştırdıma damın biri bir çözüm bulmuş ama onu nasıl uygulayacağız? anlayan yada daha öncedne bnilen biri varmı varsa lütfen paylaşalım.. teşekkürler..
.htaccess
<Files categorie>
ForceType application/x-httpd-php
</Files>
categorie
if(isset($_SERVER["REQUEST_URI"]))
{$temp = explode("/",$_SERVER["REQUEST_URI"]);
if (substr_count($temp[2],'.')>0) $temp = explode(".",$temp[2]); else $temp[0]=$temp[2];
if (substr_count($temp[0],'-')>0) {$temp = explode("-",$temp[0]);$resultpage=$temp[1];} else $resultpage=1;
$id=$temp[0];
settype($id,'int');}
else {$id=1;$resultpage=1;}
if ($id<1) $id=1;
elseif ($id>22) $id=22;
So if I have
/categorie/4.htm then id=4 and resultpage=1
/categorie/4-2.htm then id=4 and resultpage=2
aslında ne demek istediğini ve yapmak istediğini anladım ama nasıl uygulayacağız???