How to redirect specific page in a domain to local host ?

sanoop

Honorable
Nov 10, 2013
22
0
10,510
Hello guys ... Today i got my degree examination results and i failed in some of the subjects . I can't show my result to parents . So i decide to edit my result html file and put it into localhost but i cant redirect the result page(http://results.vtu.ac.in/vitavi.php) to localhost (but i can redirect the domain http://results.vtu.ac.in to local host) . So how can redirect a specific page to local host .
It may sound funny but its very series :D :pt1cable:
 
Solution
That is not so secure for information that you would thing would be somewhat sensitive if someone else get access to.

Still the solution is the same. You either put in a proxy server that directs all but that single URL out or you put in a web server and program the pages so they are smart enough to get certain pages from the real server and others from the local hard drive.

You are at the application level here and OS itself only passes the data back and forth so it pretty much only understand things at a IP address level

sanoop

Honorable
Nov 10, 2013
22
0
10,510


as you can see its not https ...http://results.vtu.ac.in/vitavi.php
 
That is not so secure for information that you would thing would be somewhat sensitive if someone else get access to.

Still the solution is the same. You either put in a proxy server that directs all but that single URL out or you put in a web server and program the pages so they are smart enough to get certain pages from the real server and others from the local hard drive.

You are at the application level here and OS itself only passes the data back and forth so it pretty much only understand things at a IP address level
 
Solution