I made the main page for my site, but before that I also made the index.html page, which redirects to my html page through the login panel.
The problem I am facing is that after entering the main page when updating, it returns to the login page, which it should not.
Can someone help me how can I overcome this problem? Below is my html code for index.html: -
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Index</title>
<frameset cols="100%">
<frame src="login.html">
<frame src="index1.html"></frameset><noframes></noframes>
</head>
source
share