.htaccess RedirectMatch 301 issue
- by Steve
Hi.
I've moved my Wordpress installation from one domain to another, and I want to use an .htaccess file on the original to redirect visitors to the new page on the new website.
The old site is http://www.steve.doig.com.au/wordpress/.
The new site is http://www.superlogical.net
I tried using tried using the following .htaccess file in the /wordpress directory:
RedirectMatch 301 http://www.steve.doig.com.au/wordpress(.*) http://www.superlogical.net/$1
However, all this does is redirect visitors to the URL: http://www.superlogical.net/wordpress/
I guess this is working properly, but I don't have Wordpress installed in a /wordpress folder on the new domain. How do I remove this from the URL redirected to?
Thanks..