laravel the requested url was not found on this server

前端 未结 9 863
不思量自难忘°
不思量自难忘° 2020-12-12 12:54

I\'ve an Ubuntu 14.04 kernel. I was installing my Laravel application in this server. After installing, I tried to set the root directory to public.

sudo n         


        
9条回答
  •  攒了一身酷
    2020-12-12 13:19

    Alternatively you could replace all the contents in your .htaccess file

    Options +FollowSymLinks -Indexes
    RewriteEngine On
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
    

    See the docs here. https://laravel.com/docs/5.8/installation#web-server-configuration

提交回复
热议问题