Auto Refresh.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Babelicious
    Registered User
    • Apr 2002
    • 82

    #1

    Auto Refresh.

    How do I make my index.html file be refreshed everytime someone visits my page....

    I update everyday, and some of my visitors say that they have to hit refresh everyday to see my updates....

    It must load yeaterday's page from their cache.....
    <a href="http://ucbill.com/ucbill/index.php?ref=fastfems">MAKE 14 cents per CLICK</a>
    <a href="http://wm.mtree.com/webmasters/ref/?321760">Make $20 pre FREE signup</a>
  • CunnyFunt
    Registered User
    • Jun 2002
    • 34

    #2
    You can add a simple meta refresh, or go further by making sure your page is dynamic, like with php's included(); function.
    Joseph Allgaier

    Unix/Perl/PHP Guru.

    Comment

    • Cogitator
      Confirmed User
      • Feb 2002
      • 672

      #3
      All you have to do is use the meta tag "Expires" and set it to yesterday's date. For example:
      <code>
      &lt;head&gt;
      &lt;META HTTP-EQUIV="expires" CONTENT="Thu, 11 Jul 2002 14:25:27 GMT"&gt;
      &lt;/head&gt;
      </code>
      - this space intentionally left blank -

      Comment

      • Babelicious
        Registered User
        • Apr 2002
        • 82

        #4
        Works Great!

        Thanks a lot.
        <a href="http://ucbill.com/ucbill/index.php?ref=fastfems">MAKE 14 cents per CLICK</a>
        <a href="http://wm.mtree.com/webmasters/ref/?321760">Make $20 pre FREE signup</a>

        Comment

        Working...