參考網址:http://stackoverflow.com/questions/11791375/laravel-routes-not-working
Laravel5 路由問題 /home頁面無法訪問
需要在apache 配置文件里添加對laravel文件夾的訪問
<Directory "D:\WAMP\laravel\public">
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#此處必須為all none不行
AllowOverride All
#
# Controls who can get stuff from this server.
#
#Require all granted
#Allow Order not supported
Allow from all
Require all granted
</Directory>