1
Well come on, I use Ubuntu, php5.6, apache2, mysql-server
, FuelPHP
. And for now I’m using the xampp
that can run my applications correctly (however I have to start it always and it does not let me log in with more than one user). So I want to start using the machine apache without depending on the xampp
.
The problem is this, when I access my system with localhost/meuprojeto/public_html/
he throws me to (localhost/meuprojeto/public_html/users/login
) which would be my correct login page but gives the following error:
The requested URL /meuprojeto/public_html/users/login was not found on this server
I suspect the error is in apache2.conf
, that is not recognizing the .htaccess
which sits within /meuprojeto/public_html/
. The apache2.conf
is 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’d like you to help me find the mistake, or tell me the possible mistake.
The
mod_rewrite
is Apache, why check in php settings if it is configured?– gmsantos
@gmsantos forgiveness. I was confused when preparing the answer.
– Patrick Maciel