hackazon
hackazon copied to clipboard
localhost/install: URL NOT FOUND
Been messing around a bit, eventually got it so far as to react. Now I'm stuck at this issue. I type in localhost address and get automatically redirected to "localhost/install" showing that URL was not found.
Please help
I also faced the same problem. The issue was not with install rather misconfiguration in apache config file. I presume you might not have added following lines in apache config file:
> <Directory />
> Options FollowSymLinks
> AllowOverride All
> Order deny,allow
> Allow from all
> </Directory>
> <Directory /var/www/hackazon/web/>
> Options Indexes FollowSymLinks MultiViews
> AllowOverride All
> Order allow,deny
> Allow from all
> </Directory>
Please add the above in config file which should resolve your problem.