Laravel5 路由问题 /home页面无法访问


参考网址: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>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM