1 to 3 of 3
I've seen this done before but was wondering how to do it. I'd like to set it up so that when someone clicks on the "Advertise" page on my site, they get taken to the purchase.php page. How would I do that?
You could put a meta tag in the WP page area:
<meta http-equiv="refresh" content="0;URL=http://www.myblog.com/path/to/purchase.php" />
Or edit your .htaccess file and add this line:
Redirect 302 /advertise.php [url=http://yoursite.com/purchase.php]http://yoursite.com/purchase.php
302 is a temporary redirect. Make sure that you have your path to purchase.php correct.
I use this for my affiliate links, tutorial can be found here.
1 to 3 of 3