November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
@Ravindra -- I will try out this solution. We actually are already using the custom redirect manager. Could you recommend how to use the redirect manager for any instance of object moved here? It is an address that changes based on the content.
Also, could you tell me a little more about Object Moved here? Is Object Moved Here based on a specfic Error Code? I cannot find much information on it at all.
If Object Moved Here is based on a specfic error code, I am curious as to why I can't just write a handler for it in the Web.config that covers it anytime it comes up. Please let me know what you think. Thank you so much!
Are you using Response.Redirect? It's not always work as expected. Sometimes you may get "Object moved to here" with a status code of 302. The recommedation would be, you manually set the status code 301 to redirect permanantly.
Response.StatusCode = 301;
Response.StatusDescription = "Moved Permanently";
Response.RedirectLocation = "REDIRECT PAGE URL";
Response.Flush();
Hey Devs,
Just have a task this week to figure out how to use the 404 page instead of the pesky "Object Moved Here" page. Is there a way to route Visitors and CMS Editors to a 404 instead of the "Object moved here" page? Any hints or advice would be appreciated. Thanks.