cd /var/www/
composer create-project --prefer-dist laravel/laravel laravel-test "5.2.*"
cd laravel-test
chmod 777 storage/logs/ bootstrap/cache/ storage/framework/views/ storage/framework/sessions/

vi /etc/httpd/conf/httpd.conf

<VirtualHost *:80>
    DocumentRoot /var/www/laravel-test/public
    ServerName laravel-test.lc
    <Directory "/var/www/laravel-test/public">
        AllowOverride All
    </Directory>
</VirtualHost>

配置主机hosts

192.168.56.101 laravel-test.lc

 

 

相关文章:

  • 2022-01-22
  • 2022-12-23
  • 2021-05-17
  • 2021-09-13
猜你喜欢
  • 2022-12-23
  • 2021-05-23
  • 2022-12-23
  • 2022-01-06
  • 2021-09-10
  • 2021-07-17
  • 2021-04-03
相关资源
相似解决方案