如何从网站开始而不是索引 wampserver

How to start off in website not index wampserver

如何做到这一点,当人们连接到我的网站时,他们不会从索引开始,而是从网站开始 Picture of Index page

创建一个 index.php 文件并在其中放入以下内容:

<?php
    header('location: ./myfile.html'); //edit the file to redirect to here...
?>