PHP development Apache server configuration, apache server configuration_PHP tutorial

WBOY
Release: 2016-07-13 09:46:28
Original
701 people have browsed it

PHP develops Apache server configuration, apache server configuration

Follow this configuration process, and it will definitely be smooth and safe.

I made a PHP applet yesterday and wanted to run it locally to test it, but my work computer didn’t have an installation environment, so I downloaded a wamp and everything went smoothly, including Apache, Mysql, and PHP. Start the wamp service, enter "http://localhost" in the browser, the access is normal, and the wamp homepage pops up. Therefore, I want to configure my own CrashServer website into Apache and test it by accessing it locally through a virtual domain name. As a result, I encountered a lot of problems. After researching on Google today, I finally found that both Ren and Du are connected.

1. First of all, Apache’s configuration files are httpd.conf and httpd-vhosts.conf. Let’s first look at the default configuration of httpd.conf after wamp is installed.

DocumentRoot "d:/wamp/www/"

<Directory />
  AllowOverride none
  Require all denied
</Directory>

<Directory "d:/wamp/www/">
  Options Indexes FollowSymLinks
  AllowOverride all
  Require local
</Directory>
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

Copy after login

To access the website through a virtual domain name, you need to configure httpd-vhosts.conf. Then you need to start httpd-vhosts.conf, because it is closed by default, so remove the # in front of #Include conf/extra/httpd-vhosts.conf in the configuration file. So httpd-vhosts.conf is enabled, then we edit the httpd-vhosts.conf file.

2. The location of the httpd-vhosts.conf file is in conf/extra in the apache directory. The Include conf/extra/httpd-vhosts.conf above actually tells you its location.

In this file, add the configuration for my CrashServer website above:

NameVirtualHost *:80

<VirtualHost *:80>
  DocumentRoot "D:/wamp/www/CrashServer"
  ServerName crash.com
</VirtualHost>

Copy after login

First of all, my CrashServer is placed under wamp/www, which is the default website directory of wamp. Secondly, I want to use crash.com to access the CrashServer when testing locally, so the configuration is as above.

Here, in order for us to access the local site through crash.com, we need to modify the hosts file and add 127.0.0.1 crash.com.

At this point, the configuration is completed, so I restarted Apache, entered crash.com to access, and the result was normal access. However, when accessing with localhost, the homepage of wamp originally appeared, but now CrashServer is displayed, so we need to add 127.0.0.1 localhost to hosts, and add the localhost site configuration to httpd-vhosts.conf. Now This is what it looks like:

NameVirtualHost *:80

<VirtualHost *:80>
  DocumentRoot "D:/wamp/www"
  ServerName localhost
</VirtualHost>

<VirtualHost *:80>
  DocumentRoot "D:/wamp/www/CrashServer"
  ServerName crash.com
</VirtualHost>

Copy after login

OK, this is basically the end. The website is configured and it looks very, very simple. But this is not the case for me. I encountered the following problem yesterday.

First of all, my CrashServer was not placed under wamp/www at the beginning, but under E:360Downloads, so I had the following configuration:

<VirtualHost *:80>
  DocumentRoot "E:/360Downloads/CrashServer"
  ServerName crash.com
</VirtualHost>
Copy after login

This is correct, the path is correct and the virtual domain name is correct, but when accessing, it prompts 403 Forbidden, no permission. So Google, oh, realized that it was necessary to add permissions to the CrashServer directory, so it modified the configuration as follows:

<VirtualHost *:80>
  DocumentRoot "E:/360Downloads/CrashServer"
  ServerName crash.com

  <Directory E:/360Downloads/CrashServer>
    Order Allow,Deny
    Allow from All
    Require all granted
  </Directory>
</VirtualHost>

Copy after login

Restart Apache and access is normal. First of all, the new Directory can be added in httpd.conf or httpd-vhosts.conf. I think it is better to add it in the latter. The configuration content is clearer and the project directory permissions follow the project. Site configuration. In the newly added Directory above, we have added permissions to the CrashServer directory under 360Downloads and allowed access, so we no longer prompt 403 Forbidden.

This problem is so simple and easy to write now, but when the problem occurs, it is very disturbing and depressing. For projects outside wamp/www, you need to give permission to the project directory. Note:

Order Allow,Deny
Allow from All
Require all granted
Copy after login

These three items are indispensable. This is configured to allow external computers to access the server site.

3. After solving the problem today, I thought of accessing my site through other devices under the same LAN, so I used my mobile phone to enter my computer’s IP in the browser, but it couldn’t be accessed. I Googled it again and found that it needed to be modified in httpd. Configuration in conf:

<Directory "d:/wamp/www/">
  Options Indexes FollowSymLinks
  AllowOverride all
  Require local
</Directory>
Copy after login

Among them, Require local is not available from Google, but as you can see from the name, it only allows local access, so it was changed to Require all granted, which allows all requested access, and the mobile phone can access it.

Reference, http://roteg.iteye.com/blog/1465380, here is an explanation of access verification configuration.

Here, there is a configuration blog post written by a foreigner, which is very good, https://www.kristengrote.com/blog/articles/how-to-set-up-virtual-hosts-using-wamp#wamp-step- 7, but the only thing is that in his Step 7, add permissions to the project directory:

<Directory C:/Users/Kristen/Documents/Projects>
  Order Deny,Allow  
  Allow from all 
</Directory>
Copy after login

However, Require all granted was missing, which resulted in 403 Forbidden in the end, which made me very depressed.

------------------------------------------------- ----------------------------------Supplement 2015-07-13---------- -------------------------------------------------- ----------------------------------------

Thanks to the only commenter in the comment for the reminder: Require all granted is only required on 2.4 and not required on 2.2.

This makes it understandable why some of the technical articles published by Google mention require all granted, while others do not.

------------------------------------------------- ----------------------------------end Supplementary 2015-07-13--------- -------------------------------------------------- ----------------------------------

This configuration is performed in the following wamp environment:

At this point, configuring the PHP site under Apache is complete.

The above is the entire content of this article, I hope you all like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1032793.htmlTechArticlePHP develops Apache server configuration. Follow this configuration process for apache server configuration. It will definitely be smooth and safe. I made a PHP applet yesterday and wanted to run a test locally, but the problem...
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!