hi,
I am trying to redirect my homepage "www.mysite.com" to "www.mysite.com/something-else.html"
i have found nothing at google so please help me with it.
This is my current .htaccess file
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^([a-z]+\.com) [NC]
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L]
RewriteRule ^index.html http://www.mysite.com/ [R=301,L]
and i want to redirect everything to www.mysite.com/something-else.html
Thank you.
Amir