EasyPHPs homepage is accessed from : http://127.0.0.1/home/. Virtual Host manager sets a local domain name to redirect to 127.0.0.1 in the hosts file. When I navigate to 'mylocaldomain.com/home/' I get an error 'The requested URL was not found on this server.' because '/home/index.php' is used for the Admin Panel of EasyPHP.
I need to use '/home/' in my local domains, so I want to try and change the default URL that EasyPHP homepage is using.
Any ideas?
I just had this problem and ran across your question. This is how you solve it:
Alias /home "${path}/binaries/home"
- Mine was at line 359/home
to /something-you-won't-think-to-use-on-your-websitesThat should do it