Webinar Replay
Codes
Below are some redirect "mask" codes you can use to manually set up your redirects. Just click on the name of the code and you will get instructions plus copy and paste material.
PHP Redirect
Use this for a 301 redirect. Just create a PHP file, upload it, and place the code below in your header...
<?php Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://YOUR_AFFILIATE_URL_HERE" ); ?>
Use this for a 302 redirect.
<?php Header("Location: http://YOUR_AFFILIATE_URL_HERE"); ?>
HTACCESS Redirect
Log into your server and edit your .htacces file and add the code below. Warning - be careful. One mistake can bring down your site. If you'd like a 302 redirect just change "301" to 302.
Meta Refresh Redirect
Put the following code in an html or php file and upload it to your server.
Javascript Redirect
Put the code below into a php or html file then upload it to your server. Caution: not all browseres support javascript.