06/04/2006, 08:04
|
| | Fecha de Ingreso: noviembre-2003
Mensajes: 50
Antigüedad: 21 años, 1 mes Puntos: 0 | |
Tu respuesta me ha servido de ayuda, al final he conseguido que funcione colocando el htaccess en el mismo directorio en el que se encuentra el index.php y poniendo en este: Options Indexes FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} /index\.html*$ [OR]
RewriteCond %{REQUEST_URI} /indice\.html*$ [OR]
RewriteCond %{REQUEST_URI} /metro\.html*$ [OR]
RewriteCond %{REQUEST_URI} /menu\.html*$ [OR]
RewriteCond %{REQUEST_URI} /catalogo/(.*)$ [OR]
RewriteCond %{REQUEST_URI} /novedades/(.*)$ [OR]
RewriteCond %{REQUEST_URI} /lecturas/(.*)$ [OR]
RewriteCond %{REQUEST_URI} /coleccionista/(.*)$ [OR]
RewriteCond %{REQUEST_URI} /festivales/(.*)$ [OR]
RewriteCond %{REQUEST_URI} /principal\.html*$
RewriteRule ^(.+)\.html*$ index.php [L]
Es decir eliminando el + de Options Indexes FollowSymLinks y eliminando también el simbolo ^ de las RewriteCond y así funciona perfectamente.
Muchas gracias |