Forum Moderators: mack
Many people are coming to my site, leaving off the 'www' part of the URL. To work in appliance with a script that I have, I need them to come through the www.mysite.com domain. So, I need a way for the page to redirect to www.mysite.com when they type in just mysite.com.
Everything I try creates a loop and crashes the browser. That is:
<meta-http-equiv="refresh" content="0; url=http://www.mysite.com/"> or PHP,
header("Location: [mysite.com")......]
Both create loops. Any help is appreciated!