07/02/2009, 09:24
|
| | | Fecha de Ingreso: octubre-2008 Ubicación: “Monte-VI-D-E-O”
Mensajes: 85
Antigüedad: 16 años, 1 mes Puntos: 0 | |
Respuesta: Problema con los permalinks Prueba lo siguiente:
Edita el .htaccess
Ejemplo:
Código:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
|