<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bufa Webmaster &#187; SEO</title>
	<atom:link href="http://www.bufa.es/web/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bufa.es</link>
	<description>Recursos web en español</description>
	<lastBuildDate>Wed, 01 Sep 2010 20:50:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Denunciar una página web a Google</title>
		<link>http://www.bufa.es/denunciar-web-google/</link>
		<comments>http://www.bufa.es/denunciar-web-google/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 21:39:40 +0000</pubDate>
		<dc:creator>bufa</dc:creator>
				<category><![CDATA[Black hat seo]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[denuncias]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.bufa.es/?p=418</guid>
		<description><![CDATA[Hay ocasiones en las que nos vemos obligados a denunciar una determinada página web al mismísimo google. ¿Cómo? ¿Por qué? cuando vemos que esa página aparece en los primeros resultados por un determinado &#8220;anchor text&#8221; y utiliza alguna de las ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bufa.es/wp-content/uploads/2010/06/spam.jpg" alt="" title="spam" width="200" height="150" class="alignleft size-full wp-image-419" />Hay ocasiones en las que nos vemos obligados a denunciar una determinada página web al mismísimo google. ¿Cómo? ¿Por qué? cuando vemos que esa página aparece en los primeros resultados por un determinado &#8220;anchor text&#8221; y utiliza alguna de las siguiente técnicas oscuras (Black hat seo) para mejorar su posicionamiento: </p>
<p><strong>Técnicas black hat seo</strong>:</p>
<ul>
<li>Texto o vínculos ocultos</li>
<li>Palabras engañosas o repetidas</li>
<li>La página no coincide con la descripción de Google</li>
<li>Página encubierta</li>
<li>Redireccionamientos engañosos</li>
<li>Páginas puerta</li>
<li>Sitio o páginas duplicadas</li>
<li>Otros&#8230;</li>
</ul>
<p>Google dispone de un formulario <a href="https://www.google.com/webmasters/tools/spamreport?hl=es">https://www.google.com/webmasters/tools/spamreport?hl=es</a> donde podemos especficar la página web a denunciar, así como la técnica que infringe&#8230;</p>
<p>Por experiencia google se toma muy enserio estas malas técnicas, y suele hacer caso a estas denuncias por spam&#8230; en mi caso han tardado entre 1-3 par de meses en eliminar ciertas páginas web de la competencia que infrigian alguna de las técnicas anteriores.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bufa.es/denunciar-web-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Función php urls amigables</title>
		<link>http://www.bufa.es/funcion-php-urls-amigables/</link>
		<comments>http://www.bufa.es/funcion-php-urls-amigables/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 20:15:29 +0000</pubDate>
		<dc:creator>bufa</dc:creator>
				<category><![CDATA[Funciones]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[función]]></category>
		<category><![CDATA[urls]]></category>

		<guid isPermaLink="false">http://www.bufa.es/?p=214</guid>
		<description><![CDATA[Tener en nuestra página web nuestros links internos con urls amigables esta demostrado que favorecen a un mejor posicionamiento web y facilitan al visitante información del contenido del enlace antes de hacer click sobre el. Vamos a crear una función ...]]></description>
			<content:encoded><![CDATA[<p>Tener en nuestra página web nuestros links internos con urls amigables esta demostrado que favorecen a un mejor posicionamiento web y facilitan al visitante información del contenido del enlace antes de hacer click sobre el.</p>
<p>Vamos a crear una <strong>función en php para generar cadenas amigables</strong> para nuestras urls.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> url_amigable<span style="color: #009900;">&#40;</span><span style="color: #000088;">$cadena</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #666666; font-style: italic;">// Sepadador de palabras que queremos utilizar</span>
   <span style="color: #000088;">$separador</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #666666; font-style: italic;">// Eliminamos el separador si ya existe en la cadan actual</span>
   <span style="color: #000088;">$cadena</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$separador</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$cadena</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #666666; font-style: italic;">// Convertimos la cadena a minusculas</span>
   <span style="color: #000088;">$cadena</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strtolower</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cadena</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #666666; font-style: italic;">// Remplazo tildes y eñes</span>
   <span style="color: #000088;">$cadena</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strtr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cadena</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;áéíóúÁñÑ&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;aeiouAnN&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #666666; font-style: italic;">// Remplazo cuarquier caracter que no este entre A-Za-z0-9 por un espacio vacio</span>
   <span style="color: #000088;">$cadena</span> <span style="color: #339933;">=</span> <span style="color: #990000;">trim</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">ereg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;[^ A-Za-z0-9]&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$cadena</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #666666; font-style: italic;">// Inserto el separador antes definido</span>
   <span style="color: #000088;">$cadena</span> <span style="color: #339933;">=</span> <span style="color: #990000;">ereg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;[ <span style="color: #000099; font-weight: bold;">\t</span><span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\r</span>]+&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$separador</span><span style="color: #339933;">,</span> <span style="color: #000088;">$cadena</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #b1b100;">return</span> <span style="color: #000088;">$cadena</span><span style="color: #339933;">;</span> 
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">// Modo de empleo:</span>
<span style="color: #b1b100;">echo</span> url_amigable<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;¡¡¡Sin LEÓN no hubiera España, que antes que Castilla leyes, Concilios, fueros y reyes, dieron prestigio a León!!!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">// Resultado: sin-leon-no-hubiera-espana-que-antes-que-castilla-leyes-concilios-fueros-y-reyes-dieron-prestigio-a-leon</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bufa.es/funcion-php-urls-amigables/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Geolocalizar una página web</title>
		<link>http://www.bufa.es/geolocalizar-pagina-web/</link>
		<comments>http://www.bufa.es/geolocalizar-pagina-web/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 17:54:48 +0000</pubDate>
		<dc:creator>bufa</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[google maps]]></category>

		<guid isPermaLink="false">http://www.bufa.es/?p=82</guid>
		<description><![CDATA[Vamos a ver como geolocalizar de manera sencilla una determinada página web usando las etiquetas &#8220;meta&#8221; del head. Las tres principales etiquetas meta de geolocalización son: &#60;META NAME=&#34;geo.position&#34; CONTENT=&#34;latitud; longitud&#34; /&#62; &#60;META NAME=&#34;geo.placename&#34; CONTENT=&#34;ciudad o nombre del lugar&#34; /&#62; &#60;META ...]]></description>
			<content:encoded><![CDATA[<p>Vamos a ver como <strong>geolocalizar</strong> de manera sencilla una determinada página web usando las etiquetas &#8220;<strong>meta</strong>&#8221; del head. Las tres principales etiquetas meta de geolocalización son:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;META</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;geo.position&quot;</span> <span style="color: #000066;">CONTENT</span>=<span style="color: #ff0000;">&quot;latitud; longitud&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;META</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;geo.placename&quot;</span> <span style="color: #000066;">CONTENT</span>=<span style="color: #ff0000;">&quot;ciudad o nombre del lugar&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;META</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;geo.region&quot;</span> <span style="color: #000066;">CONTENT</span>=<span style="color: #ff0000;">&quot;país&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></div></div>

<h3>geo.position</h3>
<p>La etiqueta geo.position contiene en primer lugar la latitud geográfica, seguida de la longitud geográfica. El separador entre ambos valores es obligatorio, y ha de ser un punto y coma (;). El separador decimal de la latitud y longitud debe ser un punto (.) y no una coma.</p>
<p>El número de dígitos usado detrás del punto decimal es libre para el usuario.</p>
<h3>geo.placename</h3>
<p>La etiqueta geo.placename indica el nombre del lugar. Normalmente el lugar es su ciudad o pueblo más cercano. Evitar aquí volver a repetir los mismos datos de la etiqueta geo.region como son el país o el nombre de la región. No es necesario que se mencionarlos dos veces.</p>
<h3>geo.region</h3>
<p>La etiqueta geo.region se compone de dos partes: código de país y código regional. El separador entre las dos es un guión (-). No son permitidos espacios adicionales antes o detrás del guión. El código regional es opcional para los países que no tienen códigos regionales.</p>
<p>Los códigos de cada país siempre constan de dos letras mayúsculas, correspondiente norma  &#8220;ISO 3166-1&#8243;. Por ejemplo, &#8220;ES&#8221; para España.</p>
<p>Los códigos regionales constarán de 1 a 3 letras mayúsculas o caracteres numéricos, correspondiente norma &#8221;ISO 3166-2&#8243;, como &#8220;VC&#8221; de la comunidad Valenciana o &#8220;V&#8221; de la ciudad de Valencia.</p>
<p><strong>Ejemplo</strong> de uso para geolocalizar una página web de la comunidad Valenciana:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;META</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;geo.position&quot;</span> <span style="color: #000066;">CONTENT</span>=<span style="color: #ff0000;">&quot;l39.484011;-0.753281&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;META</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;geo.placename&quot;</span> <span style="color: #000066;">CONTENT</span>=<span style="color: #ff0000;">&quot;Comunidad Valenciana&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;META</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;geo.region&quot;</span> <span style="color: #000066;">CONTENT</span>=<span style="color: #ff0000;">&quot;ES-VC&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></div></div>

<p>Para conseguir las corrdenadas de la latitud y longitud de un determinado lugar podeis utilizar esta página web <a href="http://www.geo-tag.de">http://www.geo-tag.de</a> que utiliza el api de google maps.</p>
<p><span id="more-82"></span></p>
<h3>Códigos regionales de España (ES):</h3>
<p>ES-AN : Andalucía<br />
ES-AR : Aragón<br />
ES-O : Asturias, Principado de<br />
ES-CN : Canarias<br />
ES-S : Cantabria<br />
ES-CM : Castilla-La Mancha<br />
ES-CL : Castilla y León<br />
ES-CT : Cataluña<br />
ES-EX : Extremadura<br />
ES-GA : Galicia<br />
ES-PM : Islas Baleares<br />
ES-LO : La Rioja<br />
ES-M : Madrid, Comunidad de<br />
ES-MU : Murcia, Region de<br />
ES-NA : Navarra, Comunidad Foral de<br />
ES-PV : País Vasco<br />
ES-VC : Valenciana, Comunidad<br />
ES-VI : Álava<br />
ES-AB : Albacete<br />
ES-A : Alicante<br />
ES-AL : Almería<br />
ES-O : Asturias<br />
ES-AV : Ávila<br />
ES-BA : Badajoz<br />
ES-PM : Baleares<br />
ES-B : Barcelona<br />
ES-BU : Burgos<br />
ES-CC : Cáceres<br />
ES-CA : Cádiz<br />
ES-S : Cantabria<br />
ES-CS : Castellón<br />
ES-CR : Ciudad Real<br />
ES-CO : Córdoba<br />
ES-CU : Cuenca<br />
ES-GE : Gerona<br />
ES-GR : Granada<br />
ES-GU : Guadalajara<br />
ES-SS : Guipuzcua<br />
ES-H : Huelva<br />
ES-HU : Huesca<br />
ES-J : Ja<br />
ES-C : La Coruña<br />
ES-LO : La Rioja<br />
ES-GC : Las Palmas<br />
ES-LE : León<br />
ES-L : Lérida<br />
ES-LU : Lugo<br />
ES-M : Madrid<br />
ES-MA : Málaga<br />
ES-MU : Murcia<br />
ES-NA : Navarra<br />
ES-OR : Orense<br />
ES-P : Palencia<br />
ES-PO : Pontevedra<br />
ES-SA : Salamanca<br />
ES-TF : Santa Cruz De Tenerife<br />
ES-SO : Segovia<br />
ES-SE : Sevilla<br />
ES-SO : Soria<br />
ES-T : Tarragona<br />
ES-TE : Teruel<br />
ES-TO : Toledo<br />
ES-V : Valencia<br />
ES-VA : Valladolid<br />
ES-BI : Vizcaya<br />
ES-ZA : Zamora<br />
ES-Z : Zaragoza<br />
ES-CE : Ceuta<br />
ES-ML : Melilla</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bufa.es/geolocalizar-pagina-web/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
