![]() |
|
|
|
|
|||||||
| HTML / Design Are you a designer? Or just trying to become one? Great! You'll be able to talk about layouts, and HTML code to help your fellow designers, so everyone can work together to master the tricks of the trade. (Maybe even some JavaScript too!) |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
Hello everyone.
Can somebody give me a code that can redirect a page from one place to another, but that in the browser not to be understood that the page is redirected.
|
|
#2
|
||||
|
||||
|
You need to use frame redirect. It means that HTML code which loads the contents of one page inside a frame, making it appear that the other page.
For example: HTML Code:
<html> <head> </head> <body> <frameset rows="100%"> <frame src="http://example.com/redirected.html"></frame> </frameset> </body> </html> |
![]() |
| Tags |
| html, redirect |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|