laravel 5 only root route works
问题 I am new to laravel. I am using Ubuntu 15.04. I installed Laravel Framework version 5.1.7 (LTS) using composer and a lamp server using $ sudo apt-get install lamp-server^ command (I didn't install Homestead). I am using PhpStorm 8.0.3 as IDE. I created three routes and a controller. The PagesController.php file looks like this: class PagesController extends Controller { public function index() { return 'Welcome to my homepage!'; } public function about() { return 'Learn a little about me.'; }