Welcome to TalkGraphics.com
Results 1 to 3 of 3
  1. #1

    Default Can I prevent indexing on a single page of a website?

    I have a webpage that isn't password restricted by that there are no links to from the main website. It's a page that you have to be "invited" to and can only access by typing a direct URL.

    Is there a way to prevent this page from being indexed? To make the page invisible to spyders? I was able to do this with HTML editors by manipulating the header data.

    Also is there coding that I can place to block access?

  2. #2

    Default Re: Can I prevent indexing on a single page of a website?

    The short answer is yes, you can. Between copy and paste/put this into the head section of your page:

    <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

    That will keep all bots that respect the command to not index that page.

    But bad bots can and will still find it, though it is unlikely to show up in a search engine.

    The best protection is to put this page into a separate folder on the server that is password protected inside the .htaccess file (only on a linux host site). You can then, in the .htaccess also place a command to not allow indexing by anyone/any bot.

    Once someone knows the url, they can link to it. Once linked, bots will find that link. True they can share a password, but it is a layer of protection.

    Take care, Mike

  3. #3

    Default Re: Can I prevent indexing on a single page of a website?

    thanks Mike!

 

 

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •