找不到Ubuntu Laravel 404

时间:2018-11-13 04:43:06

标签: php laravel ubuntu nginx

文件配置laravel(/ etc / nginx / sites-available / laravel)

server {
    listen 97 ;
    listen [::]:97 ;

    root /var/www/TestLaravel/public;
    index index.php index.html index.htm;

    server_name localhost;

    location / {
            try_files $uri $uri/ /index.php?$query_string; 
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass             unix:/var/run/php/php7.3-fpm.sock;
        fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}

文件路由web.php

<?php

Route::get('/', function () {
    return view('haha');
});

Route::get('/test', function (){
   return "test";
});

当我运行http://ip:97/testhttp://ip:97/时 结果404未找到

我尝试了Internet上的搜索结果,但什么都没做。 我使用的是php 7.3,Nginx 1.10.3,Laravel 5.7.13。 任何建议,教程或解决方案,谢谢

0 个答案:

没有答案