Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This is really easy to do with <a href="http://www.w3schools.com/html/html_frames.asp" rel="nofollow noreferrer">HTML frames</a>. Let's say your home page is <code>http://example.com/index.html</code>. Save <code>index.html</code> as <code>home.html</code> and save something like the following in <code>index.html</code>:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Website title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;iframe src="home.html" width="100%" height="100%" frameborder="0" scrolling="no" /&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>If you don't want to rename your original home page, you could instead stick a <a href="http://httpd.apache.org/docs/2.0/mod/mod_dir.html#directoryindex" rel="nofollow noreferrer"><code>DirectoryIndex</code> directive</a> in your <code>.htaccess</code> file. Just save the above code in, say, <code>frame.html</code>, change <code>home.html</code> to whatever filename your index is at, and add:</p> <pre><code>DirectoryIndex frame.html </code></pre> <p>to your <code>.htaccess</code> file.</p> <p>However, you should know that this practice fell out of style over 10 years ago because it has inherent problems. It won't break your history, but it breaks <a href="http://en.wikipedia.org/wiki/Deep_linking" rel="nofollow noreferrer">deep linking</a> (that is, one can't bookmark or link to anything other than the home page).</p> <p>More info:</p> <ul> <li><a href="http://www.useit.com/alertbox/9612.html" rel="nofollow noreferrer">Frames Suck Most of the Time</a></li> <li><a href="http://www.html-faq.com/htmlframes/?framesareevil" rel="nofollow noreferrer">Why Are Frames So Evil?</a></li> <li><a href="http://en.wikipedia.org/wiki/Framing_(World_Wide_Web)#Critique" rel="nofollow noreferrer">Framing Critique on Wikipedia</a></li> </ul>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload