"Unable to find a route to match the URI: xxxxx/index.php"

173 views Asked by At

I'm trying to use an old project in localhost, its based on kohana 3.1.1.1

When I try to enter to index.php I get: "Unable to find a route to match the URI: [project name]/index.php"

Im a noob using frameworks but I know PHP. Is there a way I can solve it?

Thank you all.

1

There are 1 answers

0
bato3 On

You need make changes in 2 files:

Kohana::init(array(
    'base_url' => '/kohana/',
    'index_file' => false,
));