Removed custom domain - now I can't access my website
jevidon
Registered Users Posts: 102 Big grins
Yesterday I removed the custom domain setting on my page, and also went to my hosting service to remove the CNAME info from that domain registration. I figured it would take a little time for the service to click back over, but today I am still unable to access my website : http://justin.smugmug.com
Any advice would be appreciated.
Justin
Any advice would be appreciated.
Justin
0
Comments
You had a redirect in your Top Javascript box that was sending all traffic to your custom domain. Once the custom domain was removed, it caused the failure. This is the part I removed from your site customizations:
function redirectPath() {
re = /(justin.smugmug.com)/;
tmp = window.location.href;
if (re.test(tmp)) {
tmp = tmp.replace(re, 'exposure.evidon.net');
window.location.href = tmp;
}
}
redirectPath();
It should be working now.
http://help.smugmug.com