var http = /http\:\/\//i; var www = "http://www."; var url = new String(location.href); if (url.indexOf('www.')<0) { var new_url = url.replace(http, www); location.href = new_url; }