PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, May 16, 2022

[FIXED] How do I alter the default URL location of EasyPHP

 May 16, 2022     easyphp     No comments   

Issue

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?


Solution

I just had this problem and ran across your question. This is how you solve it:

  • Access your EasyPHP Apache config file (on Windows, I right-click on the taskbar icon, go to Configuration, then click Apache)
  • Look for the line Alias /home "${path}/binaries/home" - Mine was at line 359
  • Change the first /home to /something-you-won't-think-to-use-on-your-websites
  • Restart the server

That should do it



Answered By - Martavis P.
Answer Checked By - Willingham (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing