But on production (ubuntu) I get the following message:
I have set AllowOverride All in the config file. Still doesn't woirk.Not Found
The requested URL /index/privacypolicy was not found on this server.
My IndexController has 2 functions:
Code: Select all
public function indexAction()
{
$this->view->page = 'home';
}
public function privacypolicyAction()
{
$this->view->page = 'privacypolicy';
}
privacypolicy doesn't.
Any help appreciated.
Thanks