<?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>technology articles - life articles - health articles - love articles &#187; Others</title>
	<atom:link href="http://www.oneclickme.com/category/others/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oneclickme.com</link>
	<description>Knowledge Magazine - Technology - Life - Health - Love</description>
	<lastBuildDate>Mon, 30 Jan 2012 03:35:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Quy tắc viết htaccess trong PHP</title>
		<link>http://www.oneclickme.com/quy-t%e1%ba%afc-vi%e1%ba%bft-htaccess-trong-php/</link>
		<comments>http://www.oneclickme.com/quy-t%e1%ba%afc-vi%e1%ba%bft-htaccess-trong-php/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 15:14:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[kinh nghiệm]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Technology articles]]></category>

		<guid isPermaLink="false">http://www.oneclickme.com/?p=607</guid>
		<description><![CDATA[Hướng dẫn &#8211; .htaccess rewrite tips using RewriteRule and RewriteCond for .htaccess mod_rewrite Be aware that mod_rewrite (RewriteRule, RewriteBase, and RewriteCond) code is executed for each and every HTTP request that accesses a file in or below the directory where the code resides, so it’s always good to limit the code to certain circumstances if readily identifiable. For example, to limit the next 5 RewriteRules to only be applied to .html and .php files, you [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000; font-family: Arial;">Hướng dẫn &#8211; .htaccess rewrite tips using RewriteRule and RewriteCond for .htaccess mod_rewrite</span></strong></p>
<p>Be aware that mod_rewrite (<em>RewriteRule, RewriteBase, and RewriteCond</em>)  code is executed for each and every HTTP request that accesses a file  in or below the directory where the code resides, so it’s always good to  limit the code to certain circumstances if readily identifiable.<br />
<strong>For example</strong>, to limit the next 5 RewriteRules to only be applied  to .html and .php files, you can use the following code, which tests if  the url does not end in .html or .php and if it doesn’t, it will skip  the next 5 RewriteRules.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteRule !\.(html|php)$ - [S=5]
RewriteRule ^.*-(vf12|vf13|vf5|vf35|vf1|vf10|vf33|vf8).+$ - [S=1]</pre>
</div>
<p><strong>.htaccess rewrite examples should begin with:</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">Options +FollowSymLinks

RewriteEngine On
RewriteBase /</pre>
</div>
<p><strong>Require the www</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.askapache\.com$ [NC]
RewriteRule ^(.*)$ http://www.askapache.com/$1 [R=301,L]</pre>
</div>
<p><strong>Loop Stopping Code</strong></p>
<p>Sometimes your rewrites cause infinite loops, stop it with one of these rewrite code snippets.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteCond %{REQUEST_URI} ^/(stats/|missing\.html|failed_auth\.html|error/).* [NC]
RewriteRule .* - [L]

RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule .* - [L]</pre>
</div>
<p><strong>Cache-Friendly File Names</strong></p>
<p>This is probably my favorite, and I use it on every site I work on. It  allows me to update my javascript and css files in my visitors cache’s  simply by naming them differently in the html, on the <a id="gal_10_26893_1" href="http://sinhvienit.net/@forum/autolink.php?id=10&amp;forumid=351&amp;script=showthread" target="_blank">server</a> they stay the same <a id="gal_11_26893_2" href="http://sinhvienit.net/@forum/autolink.php?id=11&amp;forumid=351&amp;script=showthread" target="_blank">name</a>.  This rewrites all files for /zap/j/anything-anynumber.js to  /zap/j/anything.js and /zap/c/anything-anynumber.css to  /zap/c/anything.css</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteRule ^zap/(j|c)/([a-z]+)-([0-9]+)\.(js|css)$ /zap/$1/$2.$4 [L]</pre>
</div>
<p><strong>SEO friendly link for non-flash browsers</strong></p>
<p>When you use flash on your site and you properly supply a link to  download flash that shows up for non-flash aware browsers, it is nice to  use a shortcut to keep your code clean and your external links to a  minimum. This code allows me to link to site.com/getflash/ for non-flash  aware browsers.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteRule ^getflash/?$ http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash [NC,L,R=307]</pre>
</div>
<p><strong>Removing the Query_String</strong></p>
<p>On many sites, the page will be displayed for both page.html and  page.html?anything=anything, which hurts your SEO with duplicate  content. An easy way to fix this issue is to redirect external requests  containing a query string to the same uri without the query_string.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteCond %{THE_REQUEST} ^GET\ /.*\;.*\ HTTP/
RewriteCond %{QUERY_STRING} !^$
RewriteRule .* http://www.askapache.com%{REQUEST_URI}? [R=301,L]</pre>
</div>
<p><strong>Sending requests to a php script</strong></p>
<p>This .htaccess rewrite example invisibly rewrites requests for all Adobe pdf files to be handled by /cgi-bin/pdf-script.php</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteRule ^(.+)\.pdf$  /cgi-bin/pdf-script.php?file=$1.pdf [L,NC,QSA]</pre>
</div>
<p><strong>Setting the language variable based on Client</strong></p>
<p>For sites using multiviews or with multiple language capabilities, it  is nice to be able to send the correct language automatically based on  the clients preferred language.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteCond %{HTTP:Accept-Language} ^.*(de|es|fr|it|ja|ru|en).*$ [NC]
RewriteRule ^(.*)$ - [env=prefer-language:%1]</pre>
</div>
<p><strong>Deny Access To Everyone Except PHP fopen</strong></p>
<p>This allows access to all files by php fopen, but denies anyone else.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^.+$ [NC]
RewriteRule .* - [F,L]</pre>
</div>
<p>If you are looking for ways to block or deny specific  requests/visitors, then you should definately read Blacklist with  mod_rewrite.  I give it a 10/10<br />
<strong>Deny access to anything in a subfolder except php fopen</strong></p>
<p>This can be very handy if you want to serve media files or special downloads but only through a php proxy script.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+)/.*\ HTTP [NC]
RewriteRule .* - [F,L]</pre>
</div>
<p><strong>Require no www</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^askapache\.com$ [NC]
RewriteRule ^(.*)$ http://askapache.com/$1 [R=301,L]</pre>
</div>
<p><strong>Check for a key in QUERY_STRING</strong></p>
<p>Uses a RewriteCond Directive to check QUERY_STRING for passkey, if it  doesn’t find it it redirects all requests for anything in the  /logged-in/ directory to the /login.php script.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} !passkey
RewriteRule ^/logged-in/(.*)$ /login.php [L]</pre>
</div>
<p><strong>Removes the QUERY_STRING from the URL</strong></p>
<p>If the QUERY_STRING has any value at all besides blank than the?at the  end of /login.php? tells mod_rewrite to remove the QUERY_STRING from  login.php and redirect.</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} .
RewriteRule ^login.php /login.php? [L]</pre>
</div>
<p><strong>Fix for infinite loops</strong></p>
<p>An error message related to this isRequest exceeded the limit of 10  internal redirects due to probable configuration error. Use  &#8216;LimitInternalRecursion&#8217; to increase the limit if necessary. Use  &#8216;LogLevel debug&#8217; to get a backtrace.or you may seeRequest exceeded the  limit,probable configuration error,Use &#8216;LogLevel debug&#8217; to get a  backtrace, orUse &#8216;LimitInternalRecursion&#8217; to increase the limit if  necessary</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule .* - [L]</pre>
</div>
<p><strong>External Redirect .php files to .html files (SEO friendly)</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteRule ^(.*)\.php$ /$1.html [R=301,L]</pre>
</div>
<p><strong>Internal Redirect .php files to .html files (SEO friendly)</strong></p>
<p>Redirects all files that end in .html to be served from filename.php so  it looks like all your pages are .html but really they are .php</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteRule ^(.*)\.html$ $1.php [R=301,L]</pre>
</div>
<p><strong>block access to files during certain hours of the day</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# If the hour is 16 (4 PM) Then deny all access
RewriteCond %{TIME_HOUR} ^16$
RewriteRule ^.*$ - [F,L]</pre>
</div>
<p><strong>Rewrite underscores to hyphens for SEO URL</strong></p>
<p>Converts all underscores “_” in urls to hyphens “-” for SEO benefits…  See the full article for more info.</p>
<div>
<div>Code:</div>
<pre dir="ltr">Options +FollowSymLinks
RewriteEngine On
RewriteBase /

RewriteRule !\.(html|php)$ - [S=4]
RewriteRule ^([^_]*)_([^_]*)_([^_]*)_([^_]*)_(.*)$ $1-$2-$3-$4-$5 [E=uscor:Yes]
RewriteRule ^([^_]*)_([^_]*)_([^_]*)_(.*)$ $1-$2-$3-$4 [E=uscor:Yes]
RewriteRule ^([^_]*)_([^_]*)_(.*)$ $1-$2-$3 [E=uscor:Yes]
RewriteRule ^([^_]*)_(.*)$ $1-$2 [E=uscor:Yes]

RewriteCond %{ENV:uscor} ^Yes$
RewriteRule (.*) http://d.com/$1 [R=301,L]</pre>
</div>
<p><strong>Require the www without hardcoding</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.[a-z-]+\.[a-z]{2,6} [NC]
RewriteCond %{HTTP_HOST} ([a-z-]+\.[a-z]{2,6})$     [NC]
RewriteRule ^/(.*)$ http://%1/$1 [R=301,L]</pre>
</div>
<p><strong>Require no subdomain</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} \.([a-z-]+\.[a-z]{2,6})$ [NC]
RewriteRule ^/(.*)$ http://%1/$1 [R=301,L]</pre>
</div>
<p><strong>Require no subdomain</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} \.([^\.]+\.[^\.0-9]+)$
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]</pre>
</div>
<p><strong>Redirecting WordPress Feeds to Feedburner</strong></p>
<p>Full article:Redirecting WordPress Feeds to Feedburner</p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/feed\.gif$
RewriteRule .* - [L]

RewriteCond %{HTTP_USER_AGENT} !^.*(FeedBurner|FeedValidator) [NC]
RewriteRule ^feed/?.*$ http://feeds.feedburner.com/apache/htaccess [L,R=302]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]</pre>
</div>
<p><strong>Only allow GET and PUT Request Methods</strong></p>
<p>Article: Request Methods</p>
<div>
<div>Code:</div>
<pre dir="ltr">
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_METHOD} !^(GET|PUT)
RewriteRule .* - [F]</pre>
</div>
</pre>
</div>
<p><strong>Prevent Files image/file hotlinking and bandwidth stealing</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?askapache.com/.*$ [NC]
RewriteRule \.(gif|jpg|swf|flv|png)$ /feed/ [R=302,L]</pre>
</div>
<p><strong>Stop browser prefetching</strong></p>
<div>
<div>Code:</div>
<pre dir="ltr">RewriteEngine On
SetEnvIfNoCase X-Forwarded-For .+ proxy=yes
SetEnvIfNoCase X-moz prefetch no_access=yes

# block pre-fetch requests with X-moz headers
RewriteCond %{ENV:no_access} yes
RewriteRule .* - [F,L]</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.oneclickme.com/quy-t%e1%ba%afc-vi%e1%ba%bft-htaccess-trong-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>add ons skype-tricks</title>
		<link>http://www.oneclickme.com/add-ons-skype-tricks/</link>
		<comments>http://www.oneclickme.com/add-ons-skype-tricks/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 04:18:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Technology articles]]></category>
		<category><![CDATA[Skype stricts]]></category>

		<guid isPermaLink="false">http://www.oneclickme.com/?p=87</guid>
		<description><![CDATA[(flag:mk)(flag:mk)(flag:mk)(flag:mk)(h) (h)(flag:mk)(h)(h)(flag:mk)(flag:mk) (flag:mk)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(h)(flag:mk) (flag:mk)(h)(flag:mk)(flag:mk) (h)(flag:mk) (flag:mk)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(h)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(flag:mk)(h) (flag:mk)(flag:mk)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(flag:mk)(h) (flag:mk)(flag:mk)(flag:mk)(h) (flag:mk)(flag:mk)(flag:mk)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(flag:mk) (flag:mk)(h)(flag:mk)(h)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(flag:mk) (flag:mk)(flag:mk)(h)(flag:mk) (flag:mk)(flag:mk)(flag:mk) (flag:mk)(flag:mk) (pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi) (pi)(pi)(pi)(inlove)(inlove)(pi)(inlove)(inlove)(pi)(pi)(pi)(pi) (pi)(pi)(inlove):*:*:*:*:*(inlove)(pi)(pi)(pi) (pi)(pi)(inlove):*:*:*:*:*(inlove)(pi)(pi)(pi) (pi)(pi)(inlove):*:*(h):*:*(inlove)(pi)(pi)(pi) (pi)(pi)(pi)(inlove):*:*:*(inlove)(pi)(pi)(pi)(pi) (pi)(pi)(pi)(inlove):*:*:*(inlove)(pi)(pi)(pi)(pi) (pi)(pi)(pi)(pi)(inlove):*(inlove)(pi)(pi)(pi)(pi)(pi) (pi)(pi)(pi)(pi)(pi)(inlove)(pi)(pi)(pi)(pi)(pi)(pi) (pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi) (flag:ge)(flag:ge)(flag:ge)(flag:ge)(h) (h)(flag:ge)(h)(h)(flag:ge)(flag:ge) (flag:ge)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(h)(flag:ge) (flag:ge)(h)(flag:ge)(flag:ge) (h)(flag:ge) (flag:ge)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(h)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge)(h) (flag:ge)(flag:ge)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge)(h) (flag:ge)(flag:ge)(flag:ge)(h) (flag:ge)(flag:ge)(flag:ge)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge) (flag:ge)(h)(flag:ge)(h)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge) (flag:ge)(flag:ge)(h)(flag:ge)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.oneclickme.com/wp-content/uploads/2009/10/1mv0.gif"><img class="alignleft size-full wp-image-88" title="1mv0" src="http://www.oneclickme.com/wp-content/uploads/2009/10/1mv0.gif" alt="1mv0" width="259" height="140" /></a></p>
<pre lang="text">(flag:mk)(flag:mk)(flag:mk)(flag:mk)(h) (h)(flag:mk)(h)(h)(flag:mk)(flag:mk) (flag:mk)(flag:mk)
(flag:mk)(flag:mk)(flag:mk)(h)(flag:mk) (flag:mk)(h)(flag:mk)(flag:mk) (h)(flag:mk) (flag:mk)(flag:mk)
(flag:mk)(flag:mk)(flag:mk)(h)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(flag:mk)(h) (flag:mk)(flag:mk)(flag:mk)
(flag:mk)(flag:mk)(flag:mk)(flag:mk)(h) (flag:mk)(flag:mk)(flag:mk)(h) (flag:mk)(flag:mk)(flag:mk)(flag:mk)
(flag:mk)(flag:mk)(flag:mk)(flag:mk) (flag:mk)(h)(flag:mk)(h)(flag:mk) (flag:mk)(flag:mk)(flag:mk)(flag:mk)
(flag:mk)(flag:mk)(flag:mk)(flag:mk) (flag:mk)(flag:mk)(h)(flag:mk) (flag:mk)(flag:mk)(flag:mk) (flag:mk)(flag:mk)</pre>
<p><a href="http://www.oneclickme.com/wp-content/uploads/2009/10/8nv0.gif"><img class="alignnone size-full wp-image-89" title="8nv0" src="http://www.oneclickme.com/wp-content/uploads/2009/10/8nv0.gif" alt="8nv0" width="258" height="217" /></a></p>
<pre lang="text">(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)
(pi)(pi)(pi)(inlove)(inlove)(pi)(inlove)(inlove)(pi)(pi)(pi)(pi)
(pi)(pi)(inlove):*:*:*:*:*(inlove)(pi)(pi)(pi)
(pi)(pi)(inlove):*:*:*:*:*(inlove)(pi)(pi)(pi)
(pi)(pi)(inlove):*:*(h):*:*(inlove)(pi)(pi)(pi)
(pi)(pi)(pi)(inlove):*:*:*(inlove)(pi)(pi)(pi)(pi)
(pi)(pi)(pi)(inlove):*:*:*(inlove)(pi)(pi)(pi)(pi)
(pi)(pi)(pi)(pi)(inlove):*(inlove)(pi)(pi)(pi)(pi)(pi)
(pi)(pi)(pi)(pi)(pi)(inlove)(pi)(pi)(pi)(pi)(pi)(pi)
(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)(pi)</pre>
<p><a href="http://www.oneclickme.com/wp-content/uploads/2009/10/5wx0.gif"><img class="alignnone size-full wp-image-90" title="5wx0" src="http://www.oneclickme.com/wp-content/uploads/2009/10/5wx0.gif" alt="5wx0" width="257" height="138" /></a></p>
<pre lang="text">(flag:ge)(flag:ge)(flag:ge)(flag:ge)(h) (h)(flag:ge)(h)(h)(flag:ge)(flag:ge) (flag:ge)(flag:ge)
(flag:ge)(flag:ge)(flag:ge)(h)(flag:ge) (flag:ge)(h)(flag:ge)(flag:ge) (h)(flag:ge) (flag:ge)(flag:ge)
(flag:ge)(flag:ge)(flag:ge)(h)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge)(h) (flag:ge)(flag:ge)(flag:ge)
(flag:ge)(flag:ge)(flag:ge)(flag:ge)(h) (flag:ge)(flag:ge)(flag:ge)(h) (flag:ge)(flag:ge)(flag:ge)(flag:ge)
(flag:ge)(flag:ge)(flag:ge)(flag:ge) (flag:ge)(h)(flag:ge)(h)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge)
(flag:ge)(flag:ge)(flag:ge)(flag:ge) (flag:ge)(flag:ge)(h)(flag:ge)(flag:ge) (flag:ge)(flag:ge)(flag:ge)(flag:ge)</pre>
<p>
<a href="http://www.oneclickme.com/wp-content/uploads/2009/10/363034714_3fb0557535.jpg"><img class="alignleft size-full wp-image-94" title="363034714_3fb0557535" src="http://www.oneclickme.com/wp-content/uploads/2009/10/363034714_3fb0557535.jpg" alt="363034714_3fb0557535" width="490" height="483" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oneclickme.com/add-ons-skype-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

