2008-05-18 13:50
Is possible to make automatically redirecting visitors to another page with known URL?Thanks for reply
2008-05-18 18:56
pepi – you can try this. Redirect using php:<?phpheader( "HTTP/1.1 301 Moved Permanently" );header( "Status: 301 Moved Permanently" );header( "Location: http://www.new-url.com/" );exit(0);?>