Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

FRAME -ohjauksessa periaate on muuten sama kuin URL-ohjauksessa, mutta kohdesivu avataan selaimeen kehyksen (frame) sisään. Tällöin käyttäjälle näkyy sivuston osoitteena domainosoite josta ohjaus on tehty (esimerkissä omadomain.com).

Ohjauksen voi toteuttaa luomalla public_html -hakemistoon seuraavan index.html -tiedoston:

Code Block
languagexml
<html><head><title>omadomain.com</title></head>
<frameset cols="*">
 <frame name="main" src="http://www.myspace.com/omadomain" scrolling="auto" noresize>
 <noframes>
 <body>

 Your browser does not support frames

 </body>
 </noframes>
</frameset>
</html>

...