Does apache set the default homepage? How to set the apache default homepage

Source: Internet
Author: User

Apache % C5 % E4 % D6 % C3/"target =" _ blank "> apache configuration method:

The configuration methods for both Linux and Windows are basically the same. Find the httpd. conf configuration file in the directory where you install apache,
Find the following section:

The code is as follows: Copy code

<IfModule dir_module>
DirectoryIndex index. php index.html index.htm
</IfModule>

Enter the default homepage index. php name you want to set after DirectoryIndex, as shown below:

The code is as follows: Copy code

<IfModule dir_module>
DirectoryIndex index. php
</IfModule>

This configuration will explain index. php.

Note: after modifying the httpd. conf file, restart apache.

A method to prohibit direct access to the website by IP addresses

Method 1: Create a VM,

The code is as follows: Copy code

ServerName IPAddress (for example, 192.168.0.1)

DocumentRoot/usr/local/apache/nosite/

In this way, you can.

Create an index.htm under/usr/local/apache/nosite/and prompt the user that IP access is not allowed. Or other error messages.

Method 2:

The code is as follows: Copy code

ServerName IPAddress (for example, 192.168.0.1)

DocumentRoot/usr/local/apache/nosite/

Order deny, allow

Deny from all

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.