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]