Well come on, I use ubuntu , php5.6 , apache2 , mysql-server
%% FuelPHP
. And while I'm using the% xampp
that can certinho run my applications (however I have to start him always and he will not let me log in with more than one user). So I want to start using machine apache without depending on xampp
.
The problem is this, when I access my system with localhost/meuprojeto/public_html/
it throws me to ( localhost/meuprojeto/public_html/users/login
) which would be my correct login page but gives the following error:
The requested URL / myupdate / public_html / users / login was not found on this server
I suspect that the error is in apache2.conf
, which is not recognizing the .htaccess
that is inside /meuprojeto/public_html/
. The apache2.conf
is found as follows:
Directory
Options FollowSymLinks
AllowOverride None
Require all denied
/Directory
Directory /usr/share
AllowOverride None
Require all granted
/Directory
Directory /var/www
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
/Directory
I would like you to help me find the error, or tell me the possible error.