I Was Making A Java Program That Can Check That We Will Redirect Or Not
There Are Some Status Codes In HTTPS, Like 200 Is For OK And 302 Is For Redirect,
So Heres My Code:
URL url = new URL("http://localhost/test/test_page_1.php");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.connect();
connection.getResponseCode();
The Line connection.getResponseCode();
Should Return 302 (Redirect Code) Because In The Php Code, header("location: pg_2.php") it sets location header to the page's location;
But Instead It Returns Me 200, I Am Using Xampp Wew Server, When I Open This Link In Browser, It Redirects Me, But Why I Am Not Getting 302 Code?
Please Help Me,
EDIT:
Also,
When I Used This Code:
URL url = new URL("http://localhost/hackTest/log.php");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setInstanceFollowRedirects(true);
connection.connect();
for (Map.Entry<String, List<String>> entry : connection.getHeaderFields().entrySet()){
System.out.print(entry.getKey() + ": ");
for (String str: entry.getValue()) {
System.out.print(str + ", ");
}
System.out.println();
}
Output:
Keep-Alive: timeout=5, max=100,
null: HTTP/1.1 200 OK,
Server: Apache/2.4.53 (Win64) OpenSSL/1.1.1n PHP/8.1.4,
Connection: Keep-Alive,
Content-Length: 8,
Date: Wed, 01 Feb 2023 12:56:06 GMT,
Content-Type: text/html; charset=UTF-8,
X-Powered-By: PHP/8.1.4,
There Is No Line Saying Location: pg2.php,
Why Its Happening, IDK
Please Help,
Thanks,