snapapple
Feb-28-2007, 03:29 PM
I seem to have an intermittent problem. If I click on "your photos" when in the daily photo community I get sent to the Smugmug site. If I use the link on my home page to go to the Smugmug site (while logged in) then click on "your photos" I will see http://snapapple.smugmug.com in the address window - and the page doen't open.
I copied some code from one of the help threads to redirect the address from snapapple.smugmug.com to www.susanappelphotography.com. Before I added the "redirect" code to my Java script box, whenever that //snapapple.smugmug.com poped up, I just typed in "www" in front of it and it worked. So, it seemed that the code would do the trick. When I first put it in this morning it worked on the first try, but now it's not working.
This is the code I have:
/*To Redirect to another domain name */
function redirectPath() {
re = /(snapapple.smugmug.com)/;
tmp = window.location.href;
if (re.test(tmp)) {
tmp = tmp.replace(re,'www.susanappelphotography.com');
window.location.href = tmp;
}
}
redirectPath();
Is there something wrong with this code?
By the way, that picture on the Smugmug (http://www.smugmug.com)home page is super! It's just the cutest thing I've ever seen. A Kodak moment for sure.
I copied some code from one of the help threads to redirect the address from snapapple.smugmug.com to www.susanappelphotography.com. Before I added the "redirect" code to my Java script box, whenever that //snapapple.smugmug.com poped up, I just typed in "www" in front of it and it worked. So, it seemed that the code would do the trick. When I first put it in this morning it worked on the first try, but now it's not working.
This is the code I have:
/*To Redirect to another domain name */
function redirectPath() {
re = /(snapapple.smugmug.com)/;
tmp = window.location.href;
if (re.test(tmp)) {
tmp = tmp.replace(re,'www.susanappelphotography.com');
window.location.href = tmp;
}
}
redirectPath();
Is there something wrong with this code?
By the way, that picture on the Smugmug (http://www.smugmug.com)home page is super! It's just the cutest thing I've ever seen. A Kodak moment for sure.