Correct html code for thank you page?

by 6 replies
9
Hey guys,

Just wanting to check my html for a thank you page I've have to put up on the fly. Long story short having majore headaches with the JVpress theme and need a work around in the meantime, so I've create an html page using notepad. I am especially conscious of not wanting to get this page indexed, hence asking the warrior programmers for a bit of guidance.

Here's the code:



Will gratefully accept any changes/improvements (I am not an html whizz at all!)

Cheers,

Andrew
#programming #code #correct #html #page
  • You can use "robots.txt" to prevent your page from being indexed.
    Create a file named "robots.txt" on your site root.

    Fill it with this(adjust "thankyou.php" with the page name of your thankyou page)

    Code:
    User-agent: *
    Disallow: /
  • So I need to create a folder called robots .txt on my server and put the html page (my thank you page) in this folder, with the following code at the top of that page? Just want to make sure I got the instructions right.

    Thanks,

    Andrew
    • [1] reply
    • You don't need to create a folder.
      You can put "robots.txt" and thank-you html page on the root.

      For example your home page is on "/public_html/"
      Robots.txt should be on "/public_html/"

      If thank you page is on "/public_html/",
      "robots.txt" should contain this
      Code:
      User-agent: *
      Disallow: /
      More information about robots.txt can be found here
      Code:
      http://www.robotstxt.org/
      • [1] reply
  • Cool - thanks guys. Appreciate that
    • [1] reply
    • You're very helpful.

      ...a true coder!


      --=--
      Hey Simo!
  • [DELETED]

Next Topics on Trending Feed

  • 9

    Hey guys, Just wanting to check my html for a thank you page I've have to put up on the fly. Long story short having majore headaches with the JVpress theme and need a work around in the meantime, so I've create an html page using notepad. I am especially conscious of not wanting to get this page indexed, hence asking the warrior programmers for a bit of guidance.