Search code examples
wampwampserver

How to start off in website not index wampserver


How to make it so when people connect to me website they dont start off in the index but in the website Picture of Index page


Solution

  • Make an index.php file and put the following inside:

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