
11/12/2015, 12:46
|
| | Fecha de Ingreso: agosto-2012
Mensajes: 52
Antigüedad: 12 años, 7 meses Puntos: 1 | |
Respuesta: urls amigables htaccess Conseguí solucionarlo... por si puede ayudar a alguien, la solución:
Código:
RewriteRule ^anuncios-en-([a-z_-]+)/([a-z_-]+)/([a-z_-]+)/?$ index.php?pob=$1&id=list&s=$2&se=$3 [QSA,L]
RewriteRule ^anuncios-en-([a-z_-]+)/([a-z_-]+)/?$ index.php?pob=$1&id=list&s=$2 [QSA,L]
RewriteRule ^anuncios-en-([a-z_-]+)/?$ index.php?pob=$1&id=list [QSA,L]
RewriteRule ^anuncios-([a-z_-]+)/([a-z_-]+)/([a-z_-]+)/?$ index.php?zone=$1&id=list&s=$2&se=$3 [QSA,L]
RewriteRule ^anuncios-([a-z_-]+)/([a-z_-]+)/?$ index.php?zone=$1&id=list&s=$2 [QSA,L]
RewriteRule ^anuncios-([a-z_-]+)/?$ index.php?zone=$1&id=list [QSA,L]
RewriteRule ^anuncios/?$ index.php?id=list [QSA,L]
|