05/04/2006, 09:40
|
| | | Fecha de Ingreso: febrero-2005 Ubicación: Monterrey, NL
Mensajes: 475
Antigüedad: 19 años, 9 meses Puntos: 1 | |
para descartar que en verdad sea el mod_rewrite, yo te recomiendo que pongas asi tu config <Directory "C:/wamp/www/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
RewriteEngine On
Options +FollowSymlinks #Inecesario ya lo declarastes antes
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} ^/principal\.html*$
RewriteRule ^(.+)\.html*$ index.php [L]
</Directory> |