Create index.php file and place it in the root of public_html directory:
<?php
header('Location: https://epesicrm.com/');
exit;
?>
Discussion: “Location:” header. Not only does it send this header back to the browser, but it also returns a REDIRECT (302) status code to the browser unless the 201 or a 3xx status code has already been set.
<?php
header("Location: http://www.example.com/"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
https://www.php.net/manual/en/function.header.php