Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Laravel 的新手。我可以通过制作本教程中给出的虚拟主机来运行它。
但是我有没有其他方法可以正确配置和运行 laravel 而无需触摸我的 conf 文件或不创建虚拟主机?我没有找到任何答案。
打开 CLI,导航到您的 laravel 根文件夹
$ cd ./path/to/laravel-installation
并为 Laravel 4 输入:
$ php artisan serve
对于 laravel 3 类型:
$ php -S localhost:8000 -t public
localhost:8000现在您可以在浏览器上访问它
localhost:8000