Is there any way to change my MAMP server address from localhost to anything else, or am I stuck with localhost as the name?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
localhostis a hostname that resolves to your local computer.If you’re running a webserver on your local computer,
localhostwill resolve to that service.On any other computer,
localhostwill not resolve to your webserver, but to that specific computer.If you want to add another hostname that resolves to your local computer, you can edit the
hostsfile and add an entry for the IP address127.0.0.1.Note that that will also only work on your local computer.