Home  >  Article  >  Operation and Maintenance  >  What should I do if phpstudy cannot open localhost?

What should I do if phpstudy cannot open localhost?

步履不停
步履不停Original
2019-06-10 13:14:189249browse

What should I do if phpstudy cannot open localhost?

Today I contacted the Git command and uploaded my personal project to the code cloud. After uploading it, I wanted to run my local project again and take a look. After reading this, I wanted to take a look. localhost, as a result, an embarrassing scene appeared. Localhost, which had been running well before, could no longer be used:

After Baidu finally solved the problem:

This is recorded:

1 .First open the httpd.conf file, open the comment of httpd-vhosts.conf

"Include conf/extra/httpd-vhosts.conf", and load this file first when starting the service.

2 .Configure the virtual host of localhost in the httpd-vhosts.conf file:

<VirtualHost *:80>
     DocumentRoot "F:/PHP/environment/phpstudy/WWW"
     ServerName localhost
</VirtualHost>

3. Add the domain name to the host file:

127.0.0.1 localhost (Finally, it was found that it is okay not to set this item Effective)

The problem still continues. In the end, I was helpless, so I added a domain name format of www.localhosts.com to localhost. Finally, I could access it, but localhost could not access it.

However, I haven’t given up yet. In the end, my hard work paid off. I saw a similar situation on another brother’s blog. The blog address is: https://www.cnblogs.com/superfat/p/5228347. html, just comment out "#ServerName localhost:80" or "ServerName localhost" in httpd.conf, and localhost can be accessed normally!

Recommended tutorial: phpStudy quick introduction video tutorial

The above is the detailed content of What should I do if phpstudy cannot open localhost?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn