My setup currently looks like this
application/controllers/register.php
class register_Controller extends Base_Controller
{
public $restful = true;
public function get_index()
{
return View::make('main.register');;
}
}
routes.php
Route::controller(Controller::detect());
Route::any('/', function()
{
return View::make('main.index');
});
Route::any('register',function()
{
return View::make('register.index');
});
mydomain.com works.
mydomain.com/index gives a laravel 404
mydomain.com/register gives a standard 404
What's strange is that shouldn't mydomain.com/register give me a laravel 404 error? This page indicates that WAMP was the cause, but my setup is on a Ubuntu VM running PHP5, Apache2, and mySQL.
Register_Controller
. I can't see why it's not throwing a laravel 404 mind you. – CoetaneousRoute::Controller(array('register'));
– Coetaneousregister.php
in the controllers directory and not in a sub directory of it? – Coetaneous