配置laravel遇到的问题

1.把域名绑定到 (app)/public 下
/etc/apache/sites-avaibale/000-000-default.conf
2.public/index.php作为入口文件 但是直接访问会500
因为存在.htaccess所以会出现问题
所以此时要开启 mods_rewrite 
sudo a2enmod rewrite
还要修改 AllowOverride
 
AllowOverride All
 
然后地址栏输入访问 是空白页面
然后
 sudo chmod -R 777 storage/
然后出现错误
No supported encrypter found. The cipher and / or key length are invalid.
php artisan key:generate
然后正常访问了

还有确保.env存在
composer install
————————————————————
题外话
cp -r /etc/skel /home/user 
(Note that /home/user must not exist already, or else it will create /home/user/skel.)
这样skel目录全部文件都会复制到user
cp -r /etc/skel/* /home/user
user exist 这样无法赋值隐藏文件
————————————————————

你可能感兴趣的:(配置laravel遇到的问题)