I\'m trying to override Mage/Contacts/IndexController.php
I created a folder in local and created Mynamespace/CustomContacts/controllers/IndexCont
IndexController.php file ( local/your_company/your_block_name/controllers/
local/your_company/your_block_name/etc/config.xml
IGN_Siteblocks
And Let`s go to create your sample code like this :
class IGN_Siteblocks_IndexController extends Mage_Contacts_IndexController
{
public function createAction()
{
return $this->_redirect('noroute');
}
}