Forum Moderators: phranque
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} ^example\.org$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.org$
RewriteRule ^/?$ "http\:\/\/example\.org\/index\.html" [R=301,L]
ErrorDocument 404 /index.html
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.html\ HTTP/
RewriteRule ^(.*)index\.html$ http://example.org/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^example\.org$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.org$
RewriteRule ^/?$ "http\:\/\/example\.org\/index\.html" [R=301,L]
RewriteRule ^(([^/]+/)*)index\.html http://www.example.org/$1 [R=301,NS,L]