algo asi
Código Apache:
Ver originalOptions +FollowSymLinks
RewriteEngine On
RewriteRule ^ofertas/(.*)/(.*)$ /detalle_ofertas.php?titulo=$1&codigo=$2 [L]
y tus links
Código HTML:
Ver original<!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"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <a href="/ofertas/camisa/5657">Camisa
</a><br /> <a href="/ofertas/remera/4533">Remera
</a><br />
detalle_ofertas.php
Código PHP:
Ver originalOfertas<br>
<?php
echo "Producto: " . $_GET['titulo'];
echo "<br>";
echo "Codigo: " . $_GET['codigo'];
?>
/ofertas no es una carpeta real sino que actua como un prefijo
demo:
http://mr8.emprear.com/catalogo.php
Saludos