Cómo implementar URL's amigables a tu Joomla 1) En tu programa de FTP renombra tu archivo
htaccess.txt a
.htaccess. Guarda y cierra el archivo.
2) Vé a tu
Panel de Administración > Sitio > Configuración Global > SEO. Allí encontrarás 2 opciones:
URLs amigables para buscadores: Presiona SÍ
Títulos dinámicos en las páginas: Presiona SÍ
Guarda tu configuración.
3) Bájate el componente
404 SEF RC1 en español desde Joomlaspanish.org
4) Vé a
Instaladores > Componentes. Busca desde ahí el SEF RC1 situado en la carpeta donde lo guardaste a tu computadora. Luego presiona
Subir archivo e instalarlo. Se tardará unos segundos en instalarse.
5) Ahora debes abrir tu archivo .htaccess y descomentar las últimas líneas, es decir
Cambia esta parte
Código:
########## Begin - 3rd Party SEF Section
############# Use this section if you are using a 3rd party (Non Joomla! core) SEF extension - e.g. OpenSEF, 404_SEF, 404SEFx, SEF Advance, etc
#
#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
#RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule (.*) index.php
#
########## End - 3rd Party SEF Section
Por esta
Código:
########## Begin - 3rd Party SEF Section
############# Use this section if you are using a 3rd party (Non Joomla! core) SEF extension - e.g. OpenSEF, 404_SEF, 404SEFx, SEF Advance, etc
#
RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
#
########## End - 3rd Party SEF Section
Listo. Ahora en vez de tener direcciones como:
http://www.tusitio.com/index.php?opt...id=2&Itemid=75
Serán así:
http://www.tusitio.com/el-titulo-de-tu-pagina.html
Puedes personalizar tus opciones y hasta los mismos URL's desde el menú
Componentes > 404 OPB. Puedes también personalizar tus páginas de error fácilmente. Lo he probado varias veces en
Joomla Spanish Premium 1.0.10 y funciona perfecto.
Saludos.