RewriteEngine On
RewriteBase /
# Serve existing files/directories as-is
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Deep links for scenes and optional POIs
RewriteRule ^scene_([0-9]+)_([a-z]{2})\.html/poi_([0-9]+)$ index.php [L,QSA]
RewriteRule ^scene_([0-9]+)_([a-z]{2})\.html$ index.php [L,QSA]
# Route all other requests to the front controller
RewriteRule ^ index.php [L,QSA]