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
What data can be stored in a PHP session?What data can be stored in a PHP session?May 02, 2025 am 12:17 AM

PHPsessionscanstorestrings,numbers,arrays,andobjects.1.Strings:textdatalikeusernames.2.Numbers:integersorfloatsforcounters.3.Arrays:listslikeshoppingcarts.4.Objects:complexstructuresthatareserialized.

How do you start a PHP session?How do you start a PHP session?May 02, 2025 am 12:16 AM

TostartaPHPsession,usesession_start()atthescript'sbeginning.1)Placeitbeforeanyoutputtosetthesessioncookie.2)Usesessionsforuserdatalikeloginstatusorshoppingcarts.3)RegeneratesessionIDstopreventfixationattacks.4)Considerusingadatabaseforsessionstoragei

What is session regeneration, and how does it improve security?What is session regeneration, and how does it improve security?May 02, 2025 am 12:15 AM

Session regeneration refers to generating a new session ID and invalidating the old ID when the user performs sensitive operations in case of session fixed attacks. The implementation steps include: 1. Detect sensitive operations, 2. Generate new session ID, 3. Destroy old session ID, 4. Update user-side session information.

What are some performance considerations when using PHP sessions?What are some performance considerations when using PHP sessions?May 02, 2025 am 12:11 AM

PHP sessions have a significant impact on application performance. Optimization methods include: 1. Use a database to store session data to improve response speed; 2. Reduce the use of session data and only store necessary information; 3. Use a non-blocking session processor to improve concurrency capabilities; 4. Adjust the session expiration time to balance user experience and server burden; 5. Use persistent sessions to reduce the number of data read and write times.

How do PHP sessions differ from cookies?How do PHP sessions differ from cookies?May 02, 2025 am 12:03 AM

PHPsessionsareserver-side,whilecookiesareclient-side.1)Sessionsstoredataontheserver,aremoresecure,andhandlelargerdata.2)Cookiesstoredataontheclient,arelesssecure,andlimitedinsize.Usesessionsforsensitivedataandcookiesfornon-sensitive,client-sidedata.

How does PHP identify a user's session?How does PHP identify a user's session?May 01, 2025 am 12:23 AM

PHPidentifiesauser'ssessionusingsessioncookiesandsessionIDs.1)Whensession_start()iscalled,PHPgeneratesauniquesessionIDstoredinacookienamedPHPSESSIDontheuser'sbrowser.2)ThisIDallowsPHPtoretrievesessiondatafromtheserver.

What are some best practices for securing PHP sessions?What are some best practices for securing PHP sessions?May 01, 2025 am 12:22 AM

The security of PHP sessions can be achieved through the following measures: 1. Use session_regenerate_id() to regenerate the session ID when the user logs in or is an important operation. 2. Encrypt the transmission session ID through the HTTPS protocol. 3. Use session_save_path() to specify the secure directory to store session data and set permissions correctly.

Where are PHP session files stored by default?Where are PHP session files stored by default?May 01, 2025 am 12:15 AM

PHPsessionfilesarestoredinthedirectoryspecifiedbysession.save_path,typically/tmponUnix-likesystemsorC:\Windows\TemponWindows.Tocustomizethis:1)Usesession_save_path()tosetacustomdirectory,ensuringit'swritable;2)Verifythecustomdirectoryexistsandiswrita

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor