redirect a network solutions website
I have a network solutions website. I can only forward to name servers in the form of IP addresses.
I want to forward my site software2012.com to a wix.com website.
but i cant get the wix.com name servers as its not my website i just have a flash site created on their servers. Its a free not premium account.
Is there any way i can forward to this wix URL without buying the web forwarding package offered by network solutions website at a ridiculous price.
Re: redirect a network solutions website
Do you have PHP available? You could do the simplest of all redirects in index.php:
Code:
<?php
header("Location: http://yourwixsite.wix.com/\r\n");
?>