https://burakalaca.com.tr/kategori.php?urunler=twitter şekilde girince ürünler geliyor
https://burakalaca.com.tr/kategori/twitter bu şekilde girdiğimde ürünleri listelemiyor.
.htaccess kodum
Options +FollowSymLinks Options -MultiViews RewriteEngine On ErrorDocument 404 /404.php RewriteRule ^giris(/?)$ login.php [NC] RewriteRule ^kayitol(/?)$ register.php [NC] RewriteRule ^urun/([0-9a-zA-Z-_]+)(/?)$ urun.php?detay=$1 [L] RewriteRule ^kategori/([0-9a-zA-Z-_]+)(/?)$ kategori.php?urunler=$1 [L]PHP ürün listeleme kodum
$sef = $_GET['urunler'];
if(!$sef){
go($site);
}
$product = $db->prepare("SELECT * FROM kategori WHERE kategori_durum=1 AND kategori_link=:kategori_link ORDER BY kategori_id DESC");
$product->execute(['kategori_link' => $sef]);
if($product->rowCount()){
$urun = $product->fetch(PDO::FETCH_OBJ);
}else{
go($site);
}