Questions tagged [noindex]

The noindex value of an HTML robots meta tag requests that automated Internet bots avoid indexing a web page.

The noindex value of an HTML robots meta tag requests that automated Internet bots avoid indexing a web page.

Example:

<html>
<head>
 <meta name="robots" content="noindex" />
 <title>Don't index this page</title>
</head>
128 questions
0
votes
1 answer

How to make google index only images of a page?

I have a page that contains a lot of images, but it's a page designed to be in an iframe inside an other page. I dont want this page to be indexed to prevent visitors to be stuck in this iframe, but I want to make index all the pictures inside the…
0
votes
1 answer

How to set noindex and nofollow metas in symfony framework?

I am using symfony 1.0.6 and site structure is as below; apps/frontend/module/custompages I want to set 'noindex and nofollow' metas to pages of custompages module. I tried giving as below: metas: robots: noindex,nofollow But it is not…
Manojkumar
  • 1,351
  • 5
  • 35
  • 63
-1
votes
1 answer

Stop some subdomains xxx.xxx.com of a single website being indexed by search engines

I need to stop indexing subdomains of a same site, for example: aaa.xxx.com: (No indexing) bbb.xxx.com: (No indexing) www.xxx.com: (It should indexed) All the subdomains are under the same domain. How can we achive that?
-1
votes
1 answer

Want to disallow few url with the robots.txt

I want to block a few URLs in robots.txt, but I really don't know how to do this. Below I have mentioned the URL, How should I disallow the dynamic URL. I really appreciate it if you help me to get rid of these…
-1
votes
2 answers

noindex no follow variable- have I done this correct?

I have this script in the head of all my pages- which in an include: '; print $robots."\n"; } else { $robots = '
AJFMEDIA
  • 2,093
  • 6
  • 29
  • 52
-2
votes
1 answer

C# Winforms: Add new row to unbound(!) datagridview with the use of column names

I have a custom DGV (dgvPaths) with 2 buttons as first 2 columns: DataGridViewButtonColumn btnColRemove = new DataGridViewButtonColumn(); btnColRemove.Name = "Remove"; btnColRemove.HeaderText = "Remove"; …
tar
  • 156
  • 2
  • 13
-2
votes
3 answers

SEO Help with Pages Indexed by Google

I'm working on optimizing my site for Google's search engine, and lately I've noticed that when doing a "site:www.joemajewski.com" query, I get results for pages that shouldn't be indexed at all. Let's take a look at this page, for example:…
Joe Majewski
  • 1,611
  • 3
  • 18
  • 31
-7
votes
2 answers

Can a URL be blocked using robot.txt disallow?

I am trying to block our job board from being crawled. Can a specific URL be blocked with "Disallow" in a robot.txt file? And what would that look like for this URL? I don't want to just Disallow HTML, only the URL for the URL…
1 2 3
8
9