Redirect without changing the address in the address bar
Redirect is the process of transferring the url address to another address. For example, you can type http://www.example1.com but when you hit enter, the page that appears is a page on http://www.example2.com. The transfer of the above can be done in various ways, eg by javascript: <script type="text/javascript"> location.replace("http://www.example2.com"); </script> If the script above is […]