Home Backend Development PHP Tutorial PHP development Apache server configuration

PHP development Apache server configuration

Jul 25, 2016 am 08:44 AM

Follow this configuration process and your journey 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.

  1. DocumentRoot "d:/wamp/www/"
  2. AllowOverride none
  3. Require all denied
  4. Options Indexes FollowSymLinks
  5. AllowOverride all
  6. Require local
  7. # Virtual hosts
  8. #Include conf/extra/httpd-vhosts.conf
Copy code

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 for my CrashServer website above:

  1. NameVirtualHost *:80
  2. DocumentRoot "D:/wamp/www/CrashServer"
  3. ServerName crash.com
Copy Code

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 site configuration of localhost to httpd-vhosts.conf. Now This is what it looks like:

  1. NameVirtualHost *:80
  2. DocumentRoot "D:/wamp/www"
  3. ServerName localhost
  4. DocumentRoot "D :/wamp/www/CrashServer"
  5. ServerName crash.com
Copy code

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 first, but under E:360Downloads, so I had the following configuration:

  1. DocumentRoot "E:/360Downloads/CrashServer"
  2. ServerName crash.com
Copy code

This is correct, the path is correct and the virtual domain name is also correct. However, 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:

  1. DocumentRoot "E:/360Downloads/CrashServer"
  2. ServerName crash.com
  3. Order Allow,Deny
  4. Allow from All
  5. Require all granted
Copy code

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:

  1. Order Allow,Deny
  2. Allow from All
  3. Require all granted
Copy code

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 it needed to be modified in httpd.conf. Configuration:

  1. Options Indexes FollowSymLinks
  2. AllowOverride all
  3. Require local
Copy code

Among them, Require local has not been published by Google, but as you can see from the name, it only allows local access, so it was 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 very good configuration blog post written by a foreigner, 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:

  1. Order Deny,Allow
  2. Allow from all
Copy code

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

------------------------------------------------- --------------------------------Supplementary 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.

Server configuration, PHP, Apache


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

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 Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles