How to set the default homepage of a website in apache/iis

Source: Internet
Author: User

There are many ways to set the default homepage of a website. For example, apache can be directly configured in httpd. conf and htaccess set site blacklist homepage, and iis can be set in iis Management documentation management.

On the linux Apache server, how does one set the default homepage of a website?

In the installation directory/conf/httpd. conf file, you can set the homepage file name search sequence. The following is a configuration example:

The Code is as follows: Copy code

<IfModule dir_module>

DirectoryIndex index. php index.html index.htm default. php

</IfModule>

. Htaccess file setting website renewal page

The Code is as follows: Copy code

<Files ~ "^. (Htaccess | htpasswd) $">
Deny from all
</Files>
DirectoryIndex index.html index. php
Order denyallow

The code above indicates the order in which files under the root directory are opened by the website by default. "Index.html" is the first line. If this file is not available, open "index. php ".

On the iis server, how does one set the default homepage of a website?

Open iis, right-click site management, and choose Properties> document.

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.