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>
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>
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: