Hi there,
did you activate apache mod_rewrite module? Otherwise all your routing goes through index.php like so:
// "http://your-domain.com/index.php/hello
if mod_rewrite is not active, this might not work:
// "http://your-domain.com/home
because this route actually does not exist.
You can check if mod_rewrite is loaded by running
phpinfo(INFO_MODULES);
In the apache2handler section look under "Loaded Modules" and check if mod_rewrite is listed.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community