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