I moved my blog to a new URL and created a htaccess rewrite to redirect visitors to the page's new URL. However I would like to use the index page for the old domain.
How to I redirect all urls to the new domain except for index?
The current htaccess redirect I am using is:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.thaimedicalnews.com/$1 [R=301,L]
Thanks,
Rich