Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/06/2010, 19:20
New_Race
 
Fecha de Ingreso: junio-2010
Mensajes: 54
Antigüedad: 13 años, 10 meses
Puntos: 1
Exclamación Url amigables - foro Smf

Tengo una web Smf - spirate (prefabricada) y he querido agregarle url amigables para hacer mas atractiva la interaccion.

Lo q pasa es q al entrar a un post los user no pueden comentar ni agregar el post a sus favoritos.

segui al pie de la letra lo q decia una modificación de la web:

archivo a modificar: recent.template.php

Buscamos
Cita:
<span title="', censorText($st['title']), '"><a href="', $scripturl ,'?topic=', $st['id'],'">',censorText($st['title']), '</a></span>
Y reemplazamos por
Cita:
<span title="', censorText($st['title']), '"><a href="/post/'.urls_amigables($st['category']).'/'.($st['id']).'/'.urls_amigables($st['title']).'.html">',censorText($st['title']), '</a></span>
Buscamos
Cita:
<span title="', censorText($np['title']), '"><a href="', $scripturl ,'?topic=', $np['id'],'">',censorText($np['title']), '</a></span>
Y reemplazamos por
Cita:
<span title="', censorText($np['title']), '"><a href="/post/'.urls_amigables($np['category']).'/'.($np['id']).'/'.urls_amigables($np['title']).'.html">',censorText($np['title']), '</a></span>

Vamos a .htaccess
Y si no se encuentra este codigo lo agregamos

Cita:
RewriteRule ^post/([^/]*)/([^/]*)/([^/]*)\.html$ /?id_board=$1&topic=$2&body=$3 [L]
Adjunto mi recent.template en esta direccion :

http://www.4shared.com/document/LamU...ttemplate.html


MI WEB: http://www.dyr.herobo.com

Última edición por AlvaroG; 23/06/2010 a las 09:37