search
HomeBackend DevelopmentPHP TutorialIf you don't ask for a thorough understanding of everything, you will be blind when something happens - Apache server configuration memo for PHP development

Follow this configuration process and your journey will definitely be smooth and safe.

I made a small PHP program 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 many problems. After doing some research on Google today, I finally found out 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.

<span>DocumentRoot "d:/wamp/www/"

</span><span><span>Directory </span><span>/></span><span>    AllowOverride none
    Require all denied
</span><span></span><span>Directory</span><span>></span><span><span>Directory </span><span>"d:/wamp/www/"</span><span>></span><span>    Options Indexes FollowSymLinks
    AllowOverride all
    Require local
</span><span></span><span>Directory</span><span>><br></span></span></span>

# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

<span> </span>

If you want 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 of my CrashServer website above:

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

First of all, my CrashServer is placed under wamp/www, which is the default website directory of wamp. Secondly, I want to test it locally At that time, you can access CrashServer using crash.com, 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:

<span>NameVirtualHost *:80

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

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:

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

That’s right, the paths are correct, virtual The domain name is correct, but when accessing it, 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:

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

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

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 the project directory permissions. Note:

<span>Order Allow,Deny
Allow from All
Require all granted</span>

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 it turned out that I needed to modify httpd.conf. The configuration in:

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

Among them, Require local is not listed by Google, but judging from the name, it only allows local access, so it is changed to Require all granted, allowing 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, he added permissions to the project directory:

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

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

This configuration is performed in the following wamp environment:

At this point, the PHP site is configured under Apache, and everything is completed.

The above has introduced the memorandum on configuration of the Apache server for PHP development if you don’t seek a thorough understanding of everything, and you will definitely be blind when encountering problems. It includes the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

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
Active Directory 用户和计算机丢失 [以 3 种方式修复]Active Directory 用户和计算机丢失 [以 3 种方式修复]Apr 20, 2023 pm 01:25 PM

ActiveDirectory用户和计算机(ADUC)丢失是许多WindowsPro用户报告的最令人沮丧的问题之一。ADUC是一个令人难以置信的MMC管理单元,它使管理员能够管理MicrosoftActiveDirectory。但是,由于某种原因,它在Windows服务器或Enterprise/Pro版本中缺失。让我们深入了解它丢失的原因以及我们如何修复它。Windows11是否有ActiveDirectory?ActiveDirectory是任何想要管理远程

教你创建虚拟主机并运行php项目(phpstudy + wamp)教你创建虚拟主机并运行php项目(phpstudy + wamp)Aug 07, 2022 pm 03:17 PM

本文涉及两款php的集成环境,这两款都含mysql + apache + php,phpstudy的功能比wamp要强大,并且十分简单容易上手。

【总结】WAMP无法解析PHP文件的原因和解决方法【总结】WAMP无法解析PHP文件的原因和解决方法Mar 22, 2023 am 10:38 AM

​WAMP是一个免费开源的Web服务器软件包,允许用户在Windows操作系统上搭建Web服务器环境。但是,当用户尝试在WAMP中运行PHP文件时,可能会遇到无法解析的错误。在本文中,我们将探讨WAMP无法解析PHP文件的原因和解决方法。

wamp中怎么修改php.ini文件wamp中怎么修改php.ini文件Mar 20, 2023 pm 03:33 PM

Wampserver是一个可以在Windows计算机上安装Apache、PHP和MySQL的软件包。使用Wampserver可以轻松地在本地计算机上开发和测试PHP网站。在开发过程中,我们可能需要修改PHP配置文件php.ini。本文将介绍如何在Wampserver中修改php.ini文件。

浅析WAMP环境中PHP文件乱码问题的解决方法浅析WAMP环境中PHP文件乱码问题的解决方法Mar 22, 2023 am 09:30 AM

在使用WAMP作为本地服务器环境的过程中,有时候会出现PHP文件乱码问题。这种问题不仅会影响到我们的代码编写,同时也会影响到我们网站的正常运行。在这篇文章中,我们将会介绍一些解决WAMP中PHP文件乱码的方法。

解决Yum Httpd无法解析PHP的问题解决Yum Httpd无法解析PHP的问题Mar 22, 2024 pm 01:06 PM

解决YumHttpd无法解析PHP的问题,需要具体代码示例在搭建网站时,经常会遇到Yum安装的Httpd无法解析PHP的问题,导致无法正常访问网站页面。这个问题一直困扰着很多网站管理员和开发者,在本文中,我们将针对这个问题提供一些解决方案,并给出具体的代码示例。首先,我们需要明确问题的根源。Httpd无法解析PHP通常是因为缺少必要的PHP模块或配置不正确

Centos7系统配置DNS服务Centos7系统配置DNS服务Feb 19, 2024 pm 07:40 PM

在CentOS7系统中配置DNS服务有很多不同的方法,本文将介绍两种最常用的方法:使用NetworkManager和使用resolv.conf文件。使用NetworkManager配置DNS服务NetworkManager是一个常见的网络管理器,可以帮助用户管理系统网络配置。以下是使用NetworkManager配置DNS服务的步骤:打开NetworkManager配置文件:$sudovi/etc/NetworkManager/NetworkManager.conf在文件中添加以下内容:[mai

Yum Httpd遇到PHP解析困难怎么办?Yum Httpd遇到PHP解析困难怎么办?Mar 22, 2024 pm 05:12 PM

YumHttpd遇到PHP解析困难怎么办?在搭建网站的过程中,常常会遇到Apache的Httpd服务器无法正确解析PHP脚本的情况。这会导致网站无法正常运行,给开发者和用户带来不便。那么,当遇到这种情况时,应该如何解决呢?本文将介绍如何通过配置来解决Yum安装的Httpd服务器无法正确解析PHP脚本的困扰。首先,我们需要确认是否已经安装了PHP和Httpd

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.