使用 Laravel Homestead:"no input file specified"
Using Laravel Homestead: "no input file specified"
我是新手,所以我花了一些时间来设置,但按照官方指南我仍然不知道我哪里出错了,我的 homestead.yaml 看起来像这样
ip: "192.168.10.10" memory: 2048 cpus: 2 provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: C:\Users\user\Documents\Projects
to: /home/vagrant/code
sites:
- map: homestead.test
to: /home/vagrant/code/public
databases:
- homestead
features:
- mariadb: false
- ohmyzsh: false
- webdriver: false
我的主机文件如下所示:
192.168.10.10 homestead.test
但每当我尝试访问 http://homestead.test/ 我得到 "no input file specified"
我已经通过输入 vagrant reload --provision 在线尝试了大部分解决方案
并通过 vagrant ssh 然后使用 composer 创建一个新项目。对我没有任何作用。
如有任何额外指导,我将不胜感激。
P.S.: 我正在使用 Windows 10
对于homestead.yaml
文件,间距必须为'spacebar' space,间距、缩进必须与提供的相同。
从文件对齐来看,显然间距和缩进有 运行 偏差。
我是新手,所以我花了一些时间来设置,但按照官方指南我仍然不知道我哪里出错了,我的 homestead.yaml 看起来像这样
ip: "192.168.10.10" memory: 2048 cpus: 2 provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys: - ~/.ssh/id_rsa
folders: - map: C:\Users\user\Documents\Projects
to: /home/vagrant/code
sites: - map: homestead.test
to: /home/vagrant/code/public
databases: - homestead
features: - mariadb: false - ohmyzsh: false - webdriver: false
我的主机文件如下所示:
192.168.10.10 homestead.test
但每当我尝试访问 http://homestead.test/ 我得到 "no input file specified" 我已经通过输入 vagrant reload --provision 在线尝试了大部分解决方案 并通过 vagrant ssh 然后使用 composer 创建一个新项目。对我没有任何作用。
如有任何额外指导,我将不胜感激。
P.S.: 我正在使用 Windows 10
对于homestead.yaml
文件,间距必须为'spacebar' space,间距、缩进必须与提供的相同。
从文件对齐来看,显然间距和缩进有 运行 偏差。