I am in the process of changing domain and would like to redirect all traffic visiting any page 'below' the folder:
[mysite.com...]
to [mynewsite.com...]
Anyone know the best way to do this? I don't want to have to put redirection on every page, so I figured you people would know a much simpler way!
W.
1) Redirect all 404 requests to the perl script
2) In perl script you can redirect to another domain:
3) Delete all the files
[perl]print 'Location: [YOUR-NEW-DOMAIN.com'.$ENV{'REQUEST_URI'}."\n\n";[...]