I have redirected the page to login screen by editing index.php file<?phpheader('HTTP/1.1 301 Moved Permanently');header('Location: http://ipaddress/support/login.php');exit();?>You might want to replace login.php with open.php, try following<?phpheader('HTTP/1.1 301 Moved Permanently');header('Location: http://ipaddress/support/open.php');exit();?>Since, open.php file is located inside support folder, you need to use /support/open.phpRestart the apache service once you save the modifications.P.S. Before modifying index.php file, make sure to backup the original file.