<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: SEO friendly URL in PHP</title>
	<atom:link href="http://htmlblog.net/seo-friendly-url-in-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://htmlblog.net/seo-friendly-url-in-php/</link>
	<description>The web sandbox of Asvin Balloo</description>
	<lastBuildDate>Wed, 25 Nov 2009 02:36:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hitesh</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-33535</link>
		<dc:creator>Hitesh</dc:creator>
		<pubDate>Mon, 21 Sep 2009 14:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-33535</guid>
		<description>Can you tell what I need to do to make seo friendly urls for my site www.ipl-schedule.com . I created site by paying 300$ but I have no idea about php.</description>
		<content:encoded><![CDATA[<p>Can you tell what I need to do to make seo friendly urls for my site <a href="http://www.ipl-schedule.com" rel="nofollow">http://www.ipl-schedule.com</a> . I created site by paying 300$ but I have no idea about php.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-32859</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sun, 30 Aug 2009 18:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-32859</guid>
		<description>Hi, 

Nice article. I shamelessly used your neat little function in my seo url article - http://www.web-design-talk.co.uk/116/seo-friendly-urls-with-mod-rewrite/ :) 

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Nice article. I shamelessly used your neat little function in my seo url article &#8211; <a href="http://www.web-design-talk.co.uk/116/seo-friendly-urls-with-mod-rewrite/" rel="nofollow">http://www.web-design-talk.co.uk/116/seo-friendly-urls-with-mod-rewrite/</a> :) </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atolos</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-32752</link>
		<dc:creator>Atolos</dc:creator>
		<pubDate>Fri, 28 Aug 2009 01:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-32752</guid>
		<description>Thank you very much !!! i changed a little bit for my need with some foraign characters 
but your idea was perfect for me !!! 

	$string = preg_replace(&quot;`\[.*\]`U&quot;,&quot;&quot;,$string);
	$string = preg_replace(array(&quot;`Ç`i&quot;,&quot;`ç`i&quot;,&quot;`Ö`i&quot;,&quot;`ö`i&quot;,&quot;`Ä`i&quot;,&quot;`ä`i&quot;,&quot;`Ü`i&quot;,&quot;`ü`i&quot;,&quot;`&#199;`i&quot;,&quot;`&#231;`i&quot;,&quot;`&#304;`i&quot;,&quot;`&#305;`i&quot;,&quot;`&#350;`i&quot;,&quot;`&#351;`i&quot;,&quot;`&#286;`i&quot;,&quot;`&#287;`i&quot;),array(&quot;c&quot;,&quot;c&quot;,&quot;o&quot;,&quot;o&quot;,&quot;a&quot;,&quot;a&quot;,&quot;u&quot;,&quot;u&quot;,&quot;c&quot;,&quot;c&quot;,&quot;i&quot;,&quot;i&quot;,&quot;s&quot;,&quot;s&quot;,&quot;g&quot;,&quot;g&quot;),$string);
	$string = preg_replace(&#039;`&amp;(amp;)?#?[a-z0-9]+;`i&#039;,&#039;_&#039;,$string);
	$string = htmlentities($string, ENT_COMPAT, &#039;utf-8&#039;);
	$string = preg_replace( &quot;`&amp;([a-z])(acute&#124;uml&#124;circ&#124;grave&#124;ring&#124;cedil&#124;slash&#124;tilde&#124;caron&#124;lig&#124;quot&#124;rsquo);`i&quot;,&quot;\\1&quot;, $string );
	$string = preg_replace( array(&quot;`[^a-z0-9]`i&quot;,&quot;`[-]+`&quot;) , &quot;_&quot;, $string);
	return strtolower(trim($string, &#039;_&#039;));</description>
		<content:encoded><![CDATA[<p>Thank you very much !!! i changed a little bit for my need with some foraign characters<br />
but your idea was perfect for me !!! </p>
<p>	$string = preg_replace(&#8220;`\[.*\]`U&#8221;,&#8221;",$string);<br />
	$string = preg_replace(array(&#8220;`Ç`i&#8221;,&#8221;`ç`i&#8221;,&#8221;`Ö`i&#8221;,&#8221;`ö`i&#8221;,&#8221;`Ä`i&#8221;,&#8221;`ä`i&#8221;,&#8221;`Ü`i&#8221;,&#8221;`ü`i&#8221;,&#8221;`&#199;`i&#8221;,&#8221;`&#231;`i&#8221;,&#8221;`&#304;`i&#8221;,&#8221;`&#305;`i&#8221;,&#8221;`&#350;`i&#8221;,&#8221;`&#351;`i&#8221;,&#8221;`&#286;`i&#8221;,&#8221;`&#287;`i&#8221;),array(&#8220;c&#8221;,&#8221;c&#8221;,&#8221;o&#8221;,&#8221;o&#8221;,&#8221;a&#8221;,&#8221;a&#8221;,&#8221;u&#8221;,&#8221;u&#8221;,&#8221;c&#8221;,&#8221;c&#8221;,&#8221;i&#8221;,&#8221;i&#8221;,&#8221;s&#8221;,&#8221;s&#8221;,&#8221;g&#8221;,&#8221;g&#8221;),$string);<br />
	$string = preg_replace(&#8216;`&amp;(amp;)?#?[a-z0-9]+;`i&#8217;,'_&#8217;,$string);<br />
	$string = htmlentities($string, ENT_COMPAT, &#8216;utf-8&#8242;);<br />
	$string = preg_replace( &#8220;`&amp;([a-z])(acute|uml|circ|grave|ring|cedil|slash|tilde|caron|lig|quot|rsquo);`i&#8221;,&#8221;\\1&#8243;, $string );<br />
	$string = preg_replace( array(&#8220;`[^a-z0-9]`i&#8221;,&#8221;`[-]+`&#8221;) , &#8220;_&#8221;, $string);<br />
	return strtolower(trim($string, &#8216;_&#8217;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: URL Rewriting For SEO with Mod Rewrite &#124; Web Design Talk</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-32656</link>
		<dc:creator>URL Rewriting For SEO with Mod Rewrite &#124; Web Design Talk</dc:creator>
		<pubDate>Sun, 23 Aug 2009 16:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-32656</guid>
		<description>[...] the title through a function. As the one I use is a at work I shamelessly used the one from the html blog. Here&#8217;s the PHP to generate our links page (note, I used a simple loop to output the links for [...]</description>
		<content:encoded><![CDATA[<p>[...] the title through a function. As the one I use is a at work I shamelessly used the one from the html blog. Here&#8217;s the PHP to generate our links page (note, I used a simple loop to output the links for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mod_rewrite and SEO URL&#8217;s, a Voyage of Self Discovery. &#171; Tony&#8217;s Technical Blog</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-32229</link>
		<dc:creator>mod_rewrite and SEO URL&#8217;s, a Voyage of Self Discovery. &#171; Tony&#8217;s Technical Blog</dc:creator>
		<pubDate>Thu, 06 Aug 2009 14:45:13 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-32229</guid>
		<description>[...] http://htmlblog.net/seo-friendly-url-in-php/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://htmlblog.net/seo-friendly-url-in-php/" rel="nofollow">http://htmlblog.net/seo-friendly-url-in-php/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-32184</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 05 Aug 2009 05:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-32184</guid>
		<description>How do u use &quot;barca-rejects-fifa-statement-on-olympics-row.html&quot; to find the corresponding post in my database ?

- Perhaps convert &quot;barca-rejects-fifa-statement-on-olympics-row.html&quot; back to Barca rejects FIFA statement on Olympics row&quot; and search for this title in my database ?!?</description>
		<content:encoded><![CDATA[<p>How do u use &#8220;barca-rejects-fifa-statement-on-olympics-row.html&#8221; to find the corresponding post in my database ?</p>
<p>- Perhaps convert &#8220;barca-rejects-fifa-statement-on-olympics-row.html&#8221; back to Barca rejects FIFA statement on Olympics row&#8221; and search for this title in my database ?!?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Cox</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-32069</link>
		<dc:creator>Tom Cox</dc:creator>
		<pubDate>Thu, 30 Jul 2009 18:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-32069</guid>
		<description>Thanks for this plugin!

Very useful as I use .htaccess to modify urls, although I needed a a specific PHP script to rewrite the title of urls added by my CMS.

This does the job perfectly.

Thanks again!!</description>
		<content:encoded><![CDATA[<p>Thanks for this plugin!</p>
<p>Very useful as I use .htaccess to modify urls, although I needed a a specific PHP script to rewrite the title of urls added by my CMS.</p>
<p>This does the job perfectly.</p>
<p>Thanks again!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Creating Search Engine Friendly URLS in PHP and MySQL &#124; Carl Constantine &#124; Victoria, BC, Canada</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-28523</link>
		<dc:creator>Creating Search Engine Friendly URLS in PHP and MySQL &#124; Carl Constantine &#124; Victoria, BC, Canada</dc:creator>
		<pubDate>Tue, 19 May 2009 06:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-28523</guid>
		<description>[...] string based on your topic, or in my case, the name of the individual, you need to create a string substitution function, like [...]</description>
		<content:encoded><![CDATA[<p>[...] string based on your topic, or in my case, the name of the individual, you need to create a string substitution function, like [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: asvin</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-23618</link>
		<dc:creator>asvin</dc:creator>
		<pubDate>Fri, 03 Apr 2009 07:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-23618</guid>
		<description>NP thewack ;-)</description>
		<content:encoded><![CDATA[<p>NP thewack ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thewackonerd</title>
		<link>http://htmlblog.net/seo-friendly-url-in-php/comment-page-1/#comment-23526</link>
		<dc:creator>thewackonerd</dc:creator>
		<pubDate>Thu, 02 Apr 2009 23:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=24#comment-23526</guid>
		<description>Hi Asvin, as usual I typed before engaging brain, I have it all working and it is exactly what I wanted / needed for my sites, thanks again for the code.</description>
		<content:encoded><![CDATA[<p>Hi Asvin, as usual I typed before engaging brain, I have it all working and it is exactly what I wanted / needed for my sites, thanks again for the code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
