phpstudy domain name cannot be accessed

王林
Release: 2019-10-18 11:52:50
Original
8866 people have browsed it

phpstudy domain name cannot be accessed

1. First, make sure that the window has a hosts file, and the hosts file does not have any suffix

2. Hosts contains (127.0.0.1 your virtual domain name ) Statement

Example: 127.0.0.1 www.mmp.com

3. There must be

#Include conf/extra/httpd-vhosts.conf
Copy after login

before the following statement in httpd.conf in Apache in phpstudy. In addition, please make sure httpd.conf is normal and has not been modified.

4. Make sure that your virtual domain name has been configured in phpStudy\Apache\conf\vhosts.conf. You can refer to the following configuration.

The following example is The configured website is www.mmp.com. After DocumentRoot, fill in the path of the file you want to access with your virtual domain name

<VirtualHost *:80>
    DocumentRoot "D:/phpStudy/WWW/xdswxhd"
    ServerName www.mmp.com
    ServerAlias phpStudy.net
  <Directory "D:/phpStudy/WWW/xdswxhd">
      Options  +Indexes +FollowSymLinks +ExecCGI
      AllowOverride All
      Order allow,deny
      Allow from all
      Require all granted
  </Directory>
</VirtualHost>
Copy after login

Recommended tutorial: phpstudy tutorial

The above is the detailed content of phpstudy domain name cannot be accessed. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template