taniarascia / laconia

🏺 ‎ A minimalist MVC framework.

Home Page:https://laconia.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URL not found with Apache?

Oz-rod opened this issue · comments

I tried install Laconia using Apache, I set up the server and others (composer, npm, node.js, etc). When I type the root url (http://laconia.local) it works fine but when try to enter to register the server send: "404 - The requested URL was not found on this server."

However, when I run Laconia from php -S localhost:8888 Laconia's all pages works fine!

Debian 10, PHP 7.3, Apache/2.4.38

I fixed it adding into my virtual host file:
<Directory /var/www/laconia/public>
AllowOverride All
Order Allow,Deny
Allow from All