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

时间:2017-06-19 17:02:54

标签: wamp wampserver

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

1 个答案:

答案 0 :(得分:-1)

制作一个index.php文件并将以下内容放入:

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