php - After installing homestead, after entering the URL, No input file specified is displayed.
黄舟
黄舟 2017-05-24 11:34:28
0
2
560

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(2)
迷茫

lumen.app/public

小葫芦

Check whether FASTCGI_PARAM PATH_TRANSLATED is configured correctly in the nginx configuration file

location ~ \.php(.*)$ {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    fastcgi_param  PATH_INFO  $fastcgi_path_info;
    fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
    include        fastcgi_params;
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template