Options -Indexes -MultiViews
<IfModule mod_rewrite.c>
  RewriteEngine On

  # Se o arquivo ou diretório existe, serve direto
  RewriteCond %{REQUEST_FILENAME} -f [OR]
  RewriteCond %{REQUEST_FILENAME} -d
  RewriteRule ^ - [L]

  # Roteia /card/<chave> para index.php?k=<chave>
  RewriteRule ^([^/]+)/?$ index.php?k=$1 [QSA,L]
</IfModule>
