• I set up a Yahoo account, and later redelegated a domain name to it. My index.html file is set to show an “Under Construction” page.

    I want the index.html file to send a visitor to WordPress, which I assume means a reference to domain.com/blog/index.php. What should the index.html file say to do that, exactly?

Viewing 2 replies - 1 through 2 (of 2 total)
  • <html>
    <head>
    <meta http-equiv="Refresh" content="0; url=blog/">
    <title>Redirecting to my blog</title>
    </head>

    <body>
    <p>You should not see this. But if you do, <a href="blog/">click here</a>.</p>
    </body>
    </html>

    That should do it.

    Thread Starter leonidasrex

    (@leonidasrex)

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pointing Index.html to WordPress’ is closed to new replies.