RewriteEngine On RewriteBase / Options -Indexes Options -MultiViews # Sitemap RewriteRule ^sitemap\.xml$ sitemap.php [L] # Pretty URLs: /about/ → about.html (tanpa redirect) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/$ $1.html [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/([^/]+)/$ $1/$2.html [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/([^/]+)/([^/]+)/$ $1/$2/$3.html [L]