5093 Posts in 1516 Topics by 1113 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 211 Views |
-
Stop a page in the SiteTree from being viewable on front end

28 February 2012 at 1:00am
Hey guys,
I have a page which loads content from a series of child pages. I've set the child pages to hidden so they don't appear in the menu or sitemap. But I want to stop them from dispalying if you go direct to the URL of the child page.
I've tried 301 redirects using the Link Mapping module and also via .htaccess but neither seem to override the CMS functionality.
Is there anything I can put in the controller or page class to stop it from being displayed on the front end when requrested.
Thanks,
Robbie
-
Re: Stop a page in the SiteTree from being viewable on front end

29 February 2012 at 12:54am
Just create a 301 redirect in the init() method for the controller. Init is run everytime the controller is used. For instance, the below will redirect to the parent page.
class SomeHiddenPage_Controller extends Page_Controller {
function init() {
$this->redirect($this->failover->Parent()->Link());parent::init();
}
}
| 211 Views | ||
|
Page:
1
|
Go to Top |


