RewriteEngine On

# Redirigir /pos a facturador-completo.php
RewriteRule ^pos/?$ facturador-completo.php [L]

# Redirigir /pos/ a facturador-completo.php
RewriteRule ^pos/$ facturador-completo.php [L]

# Permitir acceso a archivos estáticos
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)$ - [L]

# Redirigir cualquier otra ruta a facturador-completo.php
RewriteRule ^(.*)$ facturador-completo.php [L]
