I have this .htaccess file:
(#)impedir que se pueda ver el listado de contenidos de un directorio
Options All -Indexes
(#)URL amigables
(#)activar RewriteEngine
RewriteEngine on
RewriteRule ^(\w+)$ index.php?accion=$1
RewriteRule ^(.*)&(.*)=(.*)$ index.php?accion=$1&$2=$3'
and I would like to know how to adapt it to the Lighttpd server.