What do I have to configure in the httpd.conf file, so I do not give 404 more in Laravel 5.6?

0

What do I have to configure here in the httpd.conf file, so I do not give the error of page not found in laravel 5.6 anymore?

<Directory />
    AllowOverride none
    Require all denied
</Directory>
    
asked by anonymous 09.08.2018 / 13:01

1 answer

0

I think the answer is to change% with% by% with%, because with AllowOverride none , AllowOverride all of the specific folder of your application will not be read, making url rewriting impossible.

After you make this change, you must restart Apache.

This link talks about this:

09.08.2018 / 13:58