Gracias Ferny por la Respuesta. El código que pones funciona bien, pero me genera problemas con otras funciones que necesito del htaccess.
el código original es este:
Código:
IndexIgnore *
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^index.html$ index.php [L]
RewriteRule ^menu_h.html$ menu_h.php [L]
RewriteRule ^menu_about.html$ menu_about.php [L]
..... (MUCHOS MÁS ARCHIVOS POR CAMBIAR)
RewriteRule ^([a-zA-Z0-9_-]+)\.html$ index.php?var1=$1
ErrorDocument 404 http://localhost/www/mipagina.com/index.html
pero al utilizar el código que sugieres:
Código:
IndexIgnore *
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*).html$ $1.php [L]
RewriteRule ^([a-zA-Z0-9_-]+)\.html$ index.php?var1=$1
ErrorDocument 404 http://localhost/www/mipagina.com/index.html
ya no funciona la línea que le sigue.
Código:
RewriteRule ^([a-zA-Z0-9_-]+)\.html$ index.php?var1=$1
cual puede ser el Error?
Gracias por su tiempo