我正在尝试使用以下内容从 Homestead 机器为我的 Laravel 应用程序提供服务Homestead.yaml:
name: homestead-fontys
ip: "192.168.10.12"
memory: 2048
cpus: 2
provider: virtualbox
authorize: c:/Users/karin/.ssh/id_rsa.pub
keys:
- c:/Users/karin/.ssh/id_rsa
folders:
- map: c:/Users/karin/Documents/uni/work/develop/laravel-forum/forum/
to: /home/vagrant/code
sites:
- map: exampleurl.test
to: /home/vagrant/code/public
type: apache
php: "7.2"
databases:
- forum
features:
- mariadb: false
- ohmyzsh: false
- webdriver: false
我有以下路线:
Route::get('/', function () {
return view('welcome');
});
Route::get('/hello-world', function () {
return view('helloworld');
});
当我从 git bash 为网站提供服务时,我可以转到http://localhost:8000/查看第一个 URL。但是,如果我转到http://exampleurl.test,我会得到一个No input file specified.To access the welcome page I have to append /index.phpto the URL。当由 Homestead 运行时,我还没有弄清楚 /hello-world 的 URL 是什么。
我怎样才能确保欢迎页面在 URL 上提供并且 hello-world 在http://exampleurl.test/hello-worldhttp://exampleurl.test可用
蝴蝶刀刀
MM们