<IfModule mod_rewrite.c>
  RewriteEngine On

  # Serve dynamic sitemap
  RewriteRule ^sitemap\.xml$ sitemap.xml.php [L]

  # If the request is not for an actual file or directory
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d

  # Rewrite URLs with slugs to post.html with slug parameter
  RewriteRule ^([^/]+)/?$ post.html?slug=$1 [L,QSA]
</IfModule>