I have uploaded simple script @ http://xsliker.tk/test/
two pages are there:
index.html
login.php
now if you enter url(such as http://google.com) to input on the index.html page you get redirected to 403 error page
please help.
two pages are there:
index.html
PHP:
<!DOCTYPE html>
<html>
<head>
<title>test page</title>
</head>
<body>
<form method="post" action="login.php">
<input type="text" name="name">
<input type="submit" name="sb">
</form>
</body>
</html>
login.php
PHP:
<!DOCTYPE html>
<html>
<head>
<title>success</title>
</head>
<body>
<p>you have logged in successfully.</p>
<a href="index.html">logout</a>
</body>
</html>
now if you enter url(such as http://google.com) to input on the index.html page you get redirected to 403 error page
please help.