Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/12/2007, 14:42
Avatar de marweb
marweb
 
Fecha de Ingreso: marzo-2007
Ubicación: Ciudad de Panama
Mensajes: 125
Antigüedad: 17 años, 1 mes
Puntos: 1
Exclamación Re: Hola alguien me ayude

Hola como estan es para ver si me pueden ayudar estoy usando el mod_rewrite de php.
Estoy usando el codigo que muestro debajo. funciona el problema es cuando por ejemplo, sin pongo ese enlace en favoritos no me va al enlace, como si no pasara las variables get.

Como si se perdieran pudieran decirme si tengo algo mal.Ya que quiero poner el web en google y buscadores, y lo mas seguro es que no funcione.

Código:
Options +FollowSymLinks 
RewriteEngine on 
RewriteCond %{REQUEST_URI} -(.*)-
RewriteRule ^property-(.*)-(.*).html$ index.php?pid=properties&id=$2 [NC,L]

RewriteCond %{REQUEST_URI} -(.*)-
RewriteRule ^category-(.*)-(.*).html$ index.php?pid=cat&id=$2 [NC,L]

RewriteCond %{REQUEST_URI} -(.*)-
RewriteRule ^type-(.*)-(.*).html$ index.php?pid=tipo&id=$2 [NC,L]

RewriteCond %{REQUEST_URI} -(.*)-
RewriteRule ^news-(.*)-(.*).html$ index.php?pid=news&nid=$2 [NC,L]

RewriteCond %{REQUEST_URI} -(.*)-
RewriteRule ^noticias-pagina_(.*).html$ index.php?pid=news&pagina=$1 [NC,L]

RewriteCond %{REQUEST_URI} -(.*)-
RewriteRule ^page-(.*)-(.*).html$ index.php?pid=pages&id=$2 [NC,L]

RewriteCond %{REQUEST_URI} -(.*)-
RewriteRule ^print-(.*).html$ print.php?id=$1 [NC,L]