This seemed quit easy.. redirect/.rewrite example.info to www.example.info
Yet the following code failes.
RewriteCond %{HTTP_HOST} ^example.info
RewriteRule (.*) http://www.example.info/$1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /([^/]+/)*index\.html([#?][^\ ]*)?\ HTTP/
RewriteRule ^(([^/]+/)*)index\.html$ http://www.example.info/$1 [R=301,L]
This works perfectly on example.com.
example.com -> www.example.com
and www.example.com/index.html ->www.example.com
Why this does not work on .info domain?