Many novice users who have just started learning PHP must have been exposed to integrated environments. Among the many integrated environments, PHPstudy is very good. It is a simple tool developed by a domestic team. The easy-to-use PHP integrated environment has accumulated a large number of users because of its simplicity of setting up a PHP environment with one-click installation.
Now PHPstudy not only supports the local PHP integrated environment, but also supports the win server side Server integrated environment, PHPstudy integrates various combinations such as php mysql apache nginx iis, etc. We can better switch its php integrated environment. Let's teach you how to use PHPstudy to build a local website.
First, Download PHPstudy
Go directly to the official website of PHPstudy to download. The official website address is http://www.phpstudy.net/. The latest version of phpstudy is currently It is PHPstudy2018. You can download the latest version. Of course, your system must keep up.
Second, Install PHPstudy
After downloading PHPstudy, just double-click and install it. The steps are as follows:
(1), Double-click to display the following interface.
If you need to change the directory, just change it here.
(2), here we choose the default, click OK, as follows:
(3), click "Yes (Y)" directly, and it will appear The following interface.
、
Okay, PHPstudy has been installed at this time. You will understand the use of PHPstudy after playing with it for two days. There is nothing to say.
Three, Build a local site
After the installation is completed, the source code folder is WWW, place your source code in this folder
Four, Configuring PHPstudy
After we copy the site files, we need to configure PHPstudy so that it points to our local website, open PHPstudy, select other selection menus, and enter site domain name management ( This step can be ignored. The default access is: 127.0.0.1) as shown below:
is mainly the website directory. Be sure to select the site directory we just created. Everything else is Don't worry, click "Save settings and generate configuration file".
Fifth, Configuring the hosts file
Because the default domain name above is www.phpStudy.net, so here we also need to configure the hosts file, point it, and open it PHPstudy, select the other options menu, open hosts, edit or add the following code:
#localhost
127.0.0.1 localhost
127.0.0.1 phpStudy.net
127.0.0.1 www.phpStudy.net
Six, Install the php website source code
At this time, we can directly open www.phpStudy.net to install wordpress. The installation is very simple and will not be introduced here. If the source code we use is not WordPress, we also need to import the database. At this time, we need to use mysql database and other related tools. However, most of the excellent PHP source codes on the Internet are directly installed and imported. of.
Recommended tutorial: phpStudy quick entry video tutorial
The above is the detailed content of How to build a website in phpstudy. For more information, please follow other related articles on the PHP Chinese website!