muchisimas gracias por la info...
a una consulta mira
e usado esta guia :
Url Amigables aki estan los resultados
funciona todo bien pero realmente no me tranforma las urls es decir si te fijas bien en el codigo de fuente todabia estan las url originales y no las imaginables, como prodria hacer para transformar las url en toda la web automaticamente a decir el codigo de fuente
ejemplo:
esto:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Url Amigables</title>
<base href="http://www.elmundodvd.com/ejemplo/index.php" target="_top" />
<style type="text/css">
body{
color: #000000;
font:Verdana, Arial, Helvetica, sans-serif;
font-size:15px;
}
</style>
</head>
<body>
<hr>
Juegos : <a href="?juegos=pc">PC</a> , <a href="?juegos=play">Play</a><br />
Categorias : <a href="?categorias=peliculas">Peliculas</a> , <a href="?categorias=anime">Anime</a><br />
Musica : <a href="?musica=rock">Rock</a> , <a href="?musica=romantico">Romantico</a>
<hr>
Inicio<hr>
</body>
</html>
lo transforme automaticamente a esto:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Url Amigables</title>
<base href="http://www.elmundodvd.com/ejemplo/index.php" target="_top" />
<style type="text/css">
body{
color: #000000;
font:Verdana, Arial, Helvetica, sans-serif;
font-size:15px;
}
</style>
</head>
<body>
<hr>
Juegos : <a href="juegos/pc/">PC</a> , <a href="juegos/play/">Play</a><br />
Categorias : <a href="categorias/peliculas/">Peliculas</a> , <a href="categorias/anime/">Anime</a><br />
Musica : <a href="musica/rock/">Rock</a> , <a href="musica/romantico/">Romantico</a>
<hr>
Inicio<hr>
</body>
</html>