我有一个进入WAMP的Laravel 5项目,它在localhost:8000中工作。 我需要将此项目设置为登台服务器。所以URL就像156.34.22.11/example/laravel/public。如何将我的项目设置到其他服务器?
答案 0 :(得分:0)
将Web服务器指向public
目录,重新启动Web服务器。在存储目录上设置正确的权限。如果你正在使用Linux:
chmod -R 775 storage
运行composer update
命令并清除应用缓存:
php artisan cache:clear
php artisan route:clear
php artisan config:clear
php artisan view:clear