hackazon icon indicating copy to clipboard operation
hackazon copied to clipboard

localhost/install: URL NOT FOUND

Open TomEMK opened this issue 7 years ago • 1 comments

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

TomEMK avatar Feb 22 '18 19:02 TomEMK

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.

srikr avatar Oct 25 '19 16:10 srikr