Link: news_detail.php?id=329
Options +FollowSymLinks RewriteEngine on RewriteRule news_detail/(.*)/(.*)/$ /as/news_detail.php?$1=$2
13
●2.499
Options +FollowSymLinks RewriteEngine on RewriteRule news_detail/(.*)/(.*)/$ /as/news_detail.php?$1=$2
function seo($str) {
$str=strtolower($str);
$find = array("'",',', ' ', '>', '<', '?', '.', '"', ''', ';', '#' ,'&','/','=','-','+',':','@',
'Ş','ş','Ö','ö','Ğ','ğ','Ç','ç','İ','ı','Ü','ü');
$replace = array('','_', '_','_','_','_','_','_','_','_','_','_','_','_','_','_','_','_',
's','s','o','o','g','g','c','c','i','i','u','u');
$str = str_replace($find,$replace,$str);
$str = str_replace("_","-",$str);
return $str;
}