Blogger Information
Blog 1
fans 0
comment 0
visits 580
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
laravel安装
梦魅幽影的博客
Original
583 people have browsed it
  1. 使用类库管理神器composer安装laravel

    下载composer :  http://www.phpcomposer.com

    默认安装(安装前需要安装php)

    安装composer完成后,需要配置镜像服务(国外网站,访问需要翻墙)

composer config -g repo.packagist composer https://packagist.phpcomposer.com

    安装laravel框架(创建名为 helloworld 的laravel项目)

composer create-project laravel/laravel helloworld --perfer-dist

  2.Laravel开发环境初始化配置 

    (1)配置apache配置文件httpd.conf

        开启rewrite : (去掉下面一行前面的 # )

LoadModule rewrite_module modules/mod_rewrite.so

        开启vhost : (去掉下面两行前面的 # )

LoadModule vhost_alias_module modules/mod_vhost_alias.so
Include conf/extra/httpd-vhosts.conf

    (2)开启php扩展(配置php配置文件httpd.conf)

extension=php_openssl.dll
extension=php_mbstring.dll
extension=php_pdo_mysql.dll


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post