Like i promote hostgator so i would like they think they go to www.mysite.com/hostgator but i redirect that page to hostgator site with my aff link How can i do that? thanks
<meta http-equiv="refresh" content="5;url=https://www.hostgator.com"> Code (markup): add that to your meta tag on mysite.com/hostgator/index.htm
actually, make an htaccess file in your /hostgator directory and then put Redirect 301 / http://www.hostgator.com/ Code (markup): this will be more search engine friendly, and will actually work every time
Javascript: <SCRIPT LANGUAGE="JavaScript"> window.location="http://www.yourdomain.com/"; </script> ASP: <%response.redirect ("page2.asp")%> PHP: <?php header("Location: http://www.domain.com"); ?> HTML: <meta http-equiv="refresh" content="5;url=https://www.domain.com">
I have similar question. How can i redirect http://www.domain.com/forums to http://www.domain.com/forum?
hmm, i just discovered that if i write /forum and one random letter in it (like fo3rum, forum9, fordm) it redirects to /forum. I probably don't need any redirects now or do I?