<?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>Zarpele! Linux and Software Libre &#187; htaccess</title>
	<atom:link href="http://www.zarpele.com.ar/tag/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zarpele.com.ar</link>
	<description>GNU/Linux, Programación, Tecnologia...</description>
	<lastBuildDate>Thu, 12 Jan 2012 14:26:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Url&#8217;s amigables con php y .htaccess</title>
		<link>http://www.zarpele.com.ar/2009/09/urls-amigables-con-php-y-htaccess/</link>
		<comments>http://www.zarpele.com.ar/2009/09/urls-amigables-con-php-y-htaccess/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 21:13:24 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Tutoriales]]></category>
		<category><![CDATA[Webmaster]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=1227</guid>
		<description><![CDATA[<p>Esto es un mini tutorial para poder implementar url&#8217;s amigables con php y .htaccess de manera fácil y sencilla aplicable a cualquier ejemplo, si te sirvió o te gustó comenta que te pareció el aporte, bueno ahora el tuto&#8230;<br/><br/></p>
<p>A la hora de utilizar variables<em> $_GET</em> en php, como por ejemplo <font color="#CC0000">http://www.mipagina.com.ar/vernota.php?id=numero&#038;title=titulo</font>, nos damos cuenta que esta forma de acceder a nuestras paginas dinámicas traen una serie de inconvenientes.<br/><br/></p>
<h3>Algunas ventajas</h3>
<p><em>Aqui les dejo a mi entender las ventajas mas importantes de utilizar URL amigables de mayor a menor.</em></p>
<ol>
<li>Si bien Google nos informa que su robot<em> Googlebot</em> puede indexar hasta dos variables a través de la URL, esto no es muy recomendable según expertos en el área de posicionamiento SEO.</li>
<li>Le mostramos información irrelevante y difícil de entender al usuario que usa la aplicación web, no es muy expresivo utilizar <font color="#CC0000">http://www.mipagina.com.ar/vernota.php?id=1552</font>.</li>
<li>Son fáciles de recordar.</li>
<li>Son fáciles de escribir.</li>
<li>Y varios mas pero los antes descriptos son los mas importantes&#8230;</li>
</ol>
<h3></h3>
<h3>Manos a la obra</h3>
<ul>
<li><em>URL que tenemos:</em> <font color="#CC0000">http://www.mipagina.com.ar/vernota.php?id=numero&#038;title=titulo</font></li>
<li><em>URL que queremos:</em> <font color="#CC0000">http://www.mipagina.com.ar/vernota/numero/titulo<em>.html</em></font></li>
</ul>
<p>Lo primero que vamos a hacer es entrar en esta pagina que te ayuda a configurar tu .htaccess <a href="http://www.generateit.net/mod-rewrite/">mod_rewrite generator</a> un Wizard para crear reglas Rewrite.</p>
<p>Una vez que ingresamos en la pagina nos pedirá la <em>URL que tenemos</em> como lo describimos mas arriba, y solo clickear en <em>Generated It</em></p>
<div align="center"><img src="http://i32.tinypic.com/b6x7yp.jpg"></div>
<p>Ahora nos aparecera <em>The original URL</em> (que es la recien ingresada) y <em>The rewritten URL</em>(que es la nueva URL amigable).</p>
<ul>
<li><em>The original URL:</em> <font color="#CC0000">http://www.mipagina.com.ar/vernota.php?id=numero&#038;title=titulo</font></li>
<li><em>The rewritten URL:</em> <font color="#CC0000">http://www.mipagina.com.ar/numero/titulo.html<em>.html</em></font></li>
</ul>
<p>Ahora explicare brevemente las opciones que aparecen debajo de las URL.</p>
<h4> Parameters</h4>
<p>Seleccione los parámetros que deben estar presentes en la dirección URL reescrita. De forma predeterminada, sólo se incluyen los valores de los parámetros. Puede añadir el nombre y valor a la dirección URL reescrita o eliminar un parámetro por completo.</p>
<div align="center"><img src="http://i30.tinypic.com/inh27p.jpg"></div>
<p>Aquí no tocamos nada (en este caso), ya que en nuestro ejemplo aparecen los dos parámetros a utilizar&#8230;</p>
<h4> Prefix</h4>
<p>Es una herramienta para mejorar la forma de la dirección URL reescrita y aumentando su relevancia. </p>
<div align="center"><img src="http://i27.tinypic.com/aw9tw1.jpg"></div>
<p>Aquí ingresamos dentro de la casilla vernota/ , ya que tenemos que llegar a la forma enunciada mas arriba.</p>
<h4> Delimiters</h4>
<p>Seleccionamos los delimitadores de acuerdo a su gusto.</p>
<div align="center"><img src="http://i29.tinypic.com/4t24pi.jpg"></div>
<p>Aqui lo dejamos como esta, ya que nuestro delimitador es la barra <em>/</em> . </p>
<h4> Suffix</h4>
<p>Puede usar el sufijo para hacer cumplir la extensión al resto de su sitio. También puede incluir una o más palabras clave.</p>
<div align="center"><img src="http://i32.tinypic.com/17skrl.jpg"></div>
<p>En este caso dejamos el <em>.html</em>, tambien le podemos poner <em>.php</em>,<em> .htm</em>, <em>.asp</em>, <em>.cualquiercosa</em>. Pero por lo que e probado <em>.html</em> lo indexa bien los buscadores y me quede con este. </p>
<h4>Finalizando</h4>
<p>Listo ya hemos creado nuestra regla de reescritura, podemos observar mas abajo de la pagina nos muestra las dos URL con los parámetros coloreados, para evitar malos entendidos.</p>
<ul>
<li><em>The original URL: </em>http://www.mipagina.com.ar/vernota.php?id=<font color="#CC9D00">numero</font>&#038;title=<font color="#FFFF00">titulo</font></li>
<li><em>The rewritten URL:</em> http://www.mipagina.com.ar/vernota/<font color="#CC9D00">numero</font>/<font color="#FFFF00">titulo</font>.html</li>
</ul>
<p>Ahora solo nos queda hacer click en Done y copiar el texto que aparece en el textarea y agregarlo a nuestro .htaccess.</p>
<div align="center"><img src="http://i31.tinypic.com/y1f5z.jpg"></div>
<p><em>Les dejo la traducción aquí&#8230;</em></p>
<hr />
La regla mod_rewrite para su sitio está hecha. Por favor, siga las siguientes instrucciones para instalarlo.</p>
<ol>
<li>Primero tendrá que comprobar si el archivo .htaccess existe en la raíz de su sitio web.</li>
<li>Si el archivo. htaccess existe, puede descargarlo desde su sitio web, añada las siguientes líneas al final del archivo, y cargar el archivo modificado de nuevo a su sitio. Por favor, haga una copia del archivo original. htaccess. Así que si algo sale mal, puede restaurar el archivo original.</li>
<li>Si el archivo .htaccess no existe, crear un nuevo archivo .htaccess y agregar las siguientes líneas a la misma. Luego subirlo a la raíz de su sitio web. Usted puede eliminar si algo va mal.</li>
</ol>
<p>Añada las siguientes líneas de responsabilidad .htaccess:</p>

<div class="wp_syntax"><div class="code"><pre class="code" style="font-family:monospace;">RewriteEngine On
RewriteRule ^vernota/([^/]*)/([^/]*)\.html$ /vernota.php?id=$1&amp;title=$2 [L]</pre></div></div>

<h4>Listo</h4>
<p>Y listo ya tiene la regla creada y si URL amigable funcionando.<br />
También les dejo una función en PHP para utilizarla en la parte de title.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/*
&nbsp;
  *@autor: Chuecko
  *@url: Zarpele.Com.Ar
  *Devuelve un valor String para utilizarlo como URL amigable. 
&nbsp;
 */</span> 
<span style="color: #000000; font-weight: bold;">function</span> urls_amigables<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$url</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #808080; font-style: italic;">// Transformamos todo a minúsculas</span>
    <span style="color: #0000ff;">$url</span> = <span style="color: #000066;">strtolower</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$url</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #808080; font-style: italic;">//Reemplazamos caracteres especiales latinos</span>
    <span style="color: #0000ff;">$find</span> = <span style="color: #000066;">array</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'á'</span>, <span style="color: #ff0000;">'é'</span>, <span style="color: #ff0000;">'í'</span>, <span style="color: #ff0000;">'ó'</span>, <span style="color: #ff0000;">'ú'</span>, <span style="color: #ff0000;">'ñ'</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #0000ff;">$repl</span> = <span style="color: #000066;">array</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'a'</span>, <span style="color: #ff0000;">'e'</span>, <span style="color: #ff0000;">'i'</span>, <span style="color: #ff0000;">'o'</span>, <span style="color: #ff0000;">'u'</span>, <span style="color: #ff0000;">'n'</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #0000ff;">$url</span> = <span style="color: #000066;">str_replace</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$find</span>, <span style="color: #0000ff;">$repl</span>, <span style="color: #0000ff;">$url</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #808080; font-style: italic;">// Añadimos los guiones</span>
    <span style="color: #0000ff;">$find</span> = <span style="color: #000066;">array</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">' '</span>, <span style="color: #ff0000;">'&amp;'</span>, <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\r</span><span style="color: #000099; font-weight: bold;">\n</span>'</span>, <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\n</span>'</span>, <span style="color: #ff0000;">'+'</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #0000ff;">$url</span> = <span style="color: #000066;">str_replace</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$find</span>, <span style="color: #ff0000;">'-'</span>, <span style="color: #0000ff;">$url</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #808080; font-style: italic;">// Eliminamos y Reemplazamos demás caracteres especiales</span>
    <span style="color: #0000ff;">$find</span> = <span style="color: #000066;">array</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'/[^a-z0-9<span style="color: #000099; font-weight: bold;">\-</span>&lt;&gt;]/'</span>, <span style="color: #ff0000;">'/[<span style="color: #000099; font-weight: bold;">\-</span>]+/'</span>, <span style="color: #ff0000;">'/&lt;[^&gt;]*&gt;/'</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #0000ff;">$repl</span> = <span style="color: #000066;">array</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">''</span>, <span style="color: #ff0000;">'-'</span>, <span style="color: #ff0000;">''</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #0000ff;">$url</span> = <span style="color: #000066;">preg_replace</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$find</span>, <span style="color: #0000ff;">$repl</span>, <span style="color: #0000ff;">$url</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$url</span>;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<h4>Paginas que no usan URL amigables</h4>
<p>Estas paginas argentinas y del mundo no usan URL amigables, no se dan cuenta del potencial que estan perdiendo a la hora de Optimizacion SEO y en hacer una URL mas amigable al usuario&#8230;</p>
<ul>
<li>http://www.lanacion.com.ar/nota.asp?nota_id=1171498&#038;pid=7258991&#038;toi=6476</li>
<li>http://diariocronica.com.ar/noticia.php?idnota=150498</li>
<li>http://www.atp.com.ar/verpost.asp?ID=125600 </li>
<li>http://www.ucr.org.ar/nota.php?NOTAID=4139</li>
<li>http://www.diario.com.mx/nota.php?notaid=a8207b909217cef5686a7849ae671568 </li>
<li>http://www.gacemail.com.ar/Detalle.asp?NotaID=10277</li>
<li>http://www.enplenitud.com/nota.asp?notaid=10744</li>
<li>http://www.latinspots.com/website/nota.php?notaid=13240</li>
<li>http://www.catamarcaya.com/notas.php?id_nota=12610</li>
<p><em>DIARIOS DE MI CIUDAD:</em></p>
<li>http://www.elheraldo.com.ar/ver_noticias.php?id_nota=34017 </li>
<li>http://www.diarioelsol.com/noticias.php?ed=13842&#038;di=0&#038;no=64946 </li>
<li>http://www.diariojunio.com.ar/noticias.php?ed=1&#038;di=0&#038;no=35278 </li>
<li>http://www.horadigital.com.ar/noticia.asp?id=13632 </li>
</ul>
<p>Entradas Relacionadas:</p>
<ul>
<li><a href="http://www.zarpele.com.ar/2009/07/borrar-extension-php-con-htacces/">Borrar Extensión .PHP con .htaccess</a></li>
</ul>
<hr />
<blockquote><p><em><span style="color: #333399;">Saludos,<br />
Si te sirvió deja un comentario&#8230;</span></em></p></blockquote>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d1227" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;submitHeadline=Url%26%238217%3Bs+amigables+con+php+y+.htaccess&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;title=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;title=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;title=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;bm_description=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;T=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;title=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;title=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Url%26%238217%3Bs+amigables+con+php+y+.htaccess+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F09%2Furls-amigables-con-php-y-htaccess%2F&amp;t=Url%26%238217%3Bs+amigables+con+php+y+.htaccess" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1227').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2009/09/urls-amigables-con-php-y-htaccess/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

