Estoy trabajando con url amigables y me esta pasando lo siguiente:
Cuando la página se carga desde un link todo va bien:
Código HTML:
Dominio.etc/index/categoria,monitores/
Código HTML:
Dominio.etc/index/categoria,monitores//categoria,monitores/
Saben a que se puede deber esto?
El codigo utilizado es el siguiente:
Código PHP:
<?php
session_name("url_amigable");
session_start();
$Server=$_SERVER['SERVER_NAME'];
$Script=$_SERVER['PHP_SELF'];
$Variables=$_SERVER['QUERY_STRING'];
if(!empty($Variables) && $_SERVER['REQUEST_METHOD']=='GET' && $_SESSION['Listo']!=1){
$Variable=explode("&",$Variables);
for($i=0;$i<count($Variable);$i++){
@$Amigable.="/".str_replace("=",",",$Variable[$i]);
}
$Dir=str_replace(".php","",$Script);
$URL_AMIGABLE="http://".$Server.$Dir.$Amigable."/";
$_SESSION['Listo']=1;
header("Location: $URL_AMIGABLE");
exit;
}
$_URL_BASE="http://".$Server."/pruebas/url_amigable/";
?>
Gracias por el tiempo!
Abrazos!