1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Core controllers location, error controller

This commit is contained in:
secretr
2011-11-25 17:45:35 +00:00
parent a8cf6fbeac
commit 8ba02484a4
2 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
class core_system_index_controller extends eController
{
/**
* Temporary redirect to site Index
* XXX - move the index.php Front page detection to index/index/index, make index.php the entry point and _forward here
*/
public function actionIndex()
{
$this->_redirect('/', false, 301);
}
}