<?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>Graphic Maniacs &#187; SEO</title>
	<atom:link href="http://graphicmaniacs.com/cat/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://graphicmaniacs.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 13:08:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Basic .htaccess code samples</title>
		<link>http://graphicmaniacs.com/note/basic-htaccess-code-samples/</link>
		<comments>http://graphicmaniacs.com/note/basic-htaccess-code-samples/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 21:53:21 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://graphicmaniacs.com/?p=172</guid>
		<description><![CDATA[Whether you are working on your website SEO or just looking a way to improve the user navigation, or help the search engine move to new pages, you&#8217;ll need to write redirects and rewrites via .htaccess Here I&#8217;ll show the main htaccess tips and tricks. To force the user view the http://www instead of http://, [...]<div class="addthis_toolbox addthis_default_style " addthis:url='http://graphicmaniacs.com/note/basic-htaccess-code-samples/' addthis:title='Basic .htaccess code samples '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Whether you are working on your website SEO or just looking a way to improve the user navigation, or help the search engine move to new pages, you&#8217;ll need to write redirects and rewrites via .htaccess</p>
<p>Here I&#8217;ll show the main htaccess tips and tricks.</p>
<p>To force the user view the http://www instead of http://, use this code:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]</pre></div></div>

<p>To force the user to browse the website via secure HTTPS port, use this code:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://www.example.com/$1</pre></div></div>

<p>If you don&#8217;t want to use HTTPS either, use</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTPS} =on
RewriteRule ^(.*) http://www.example.com/$1</pre></div></div>

<p>If you wish to browse a certain folder in HTTPS, for example your &#8216;shop&#8217; folder, use</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteCond %{REQUEST_URI} shop 
RewriteRule ^(.*)$ https://www.example.com/shop/$1 [R,L]</pre></div></div>

<p>If you wish to run the script in another folder, but without the user knowing that. This example will open /hiddenfolder/home.html instead of actually /home/</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">RewriteEngine On 
RewriteBase /hiddenfolder
RewriteRule ^home/$  home.html</pre></div></div>

<p>To include any file before the requested one</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">php_value auto_prepend_file somefile.php</pre></div></div>

<p>And to include any file after the requested one</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">php_value auto_append_file somefile.php</pre></div></div>

<p>If you have renamed a particular folder or category, use this code</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Options +FollowSymLinks
RewriteEngine on
RewriteRule ^/uglyoldfoldername/(.*)$ /newname/$1 [R]</pre></div></div>

<p>If you renamed your .html files to .php, you can use this code</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)\.html$ $1.php [R=permanent]</pre></div></div>

<p>If you decided to use nice urls, but you are using one .php file for that, you can use something like that</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">RewriteEngine on
RewriteRule ^cat/(.*)/(.*)/$ /index.php?cat=$1&amp;id=$2 [L]</pre></div></div>

<p>Or simply</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">RewriteEngine on
RewriteRule ^user/register/$ /user-register.php [L]</pre></div></div>

<h4>This page can be found by searching for:</h4><div class='search-terms'><span>htaccess samples</span><span>htaccess sample</span><span>htaccess example code</span><span>sample htaccess code</span><span>htaccess sample code</span><span>htaccess basic code</span><span>sample htaccess</span><span>htacess samples</span><span>basic htaccess example</span><span>basic htaccess for php</span></div><br /><br /><div class="addthis_toolbox addthis_default_style " addthis:url='http://graphicmaniacs.com/note/basic-htaccess-code-samples/' addthis:title='Basic .htaccess code samples '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://graphicmaniacs.com/note/basic-htaccess-code-samples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World&#8217;s top search queries</title>
		<link>http://graphicmaniacs.com/note/worlds-top-search-queries/</link>
		<comments>http://graphicmaniacs.com/note/worlds-top-search-queries/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 13:52:45 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://graphicmaniacs.com/?p=165</guid>
		<description><![CDATA[I&#8217;ve been studying the search queries recently, and managed a list of most popular search engine queries. According to different sources, like Yahoo!, Ask, Lycos, this is what people search most for: Yahoo! 1: Brittany Murphy (3) -825 2: Jamie-Lynn Discala (1) +293 3: Christmas (22) +34 4: NFL (107) -20 5: Merry Christmas (4) [...]<div class="addthis_toolbox addthis_default_style " addthis:url='http://graphicmaniacs.com/note/worlds-top-search-queries/' addthis:title='World&#8217;s top search queries '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been studying the search queries recently, and managed a list of most popular search engine queries. According to different sources, like Yahoo!, Ask, Lycos, this is what people search most for:</p>
<p><strong>Yahoo!</strong><br />
1: Brittany Murphy (3)	-825<br />
2: Jamie-Lynn Discala (1)	+293<br />
3: Christmas (22)	+34<br />
4: NFL (107)	-20<br />
5: Merry Christmas (4)	+33<br />
6: Bing (84)	-4<br />
7: Tiger Woods (17)	-24<br />
8: Hulu (74)	+2<br />
9: Twitter (216)	-1<br />
10: Drudge Report (271)	+0<br />
11: Pandora Radio (329)	+5<br />
12: Alicia Keys (6)	+71<br />
13: Avatar (3)	-33<br />
14: LeAnn Rimes (1)	+79<br />
15: Lady Gaga (221)	-1<br />
16: Macy&#8217;s (35)	-2<br />
17: YouTube (23)	+8<br />
18: Chase (4)	+1<br />
19: Carrie Underwood (2)	-64<br />
20: WWE (137)	-4</p>
<p><strong>Google:</strong><br />
1. infragard<br />
2. norad santa tracker 2009<br />
3. happy holidays everyone<br />
4. curious george<br />
5. where is santa right now<br />
6. christmas eve quotes<br />
7. elijah wood<br />
8. ultradns<br />
9. merry christmas in german<br />
10. 3 idiots movie review<br />
11. track santa on google earth<br />
12. target hours christmas eve<br />
13. merry christmas in different languages<br />
14. david goldman sean<br />
15. farmville presents<br />
16. robert lewis howard<br />
17. stores open on christmas eve<br />
18. witches of breastwick 2<br />
19. walmart holiday hours 2009<br />
20. christmas pictures</p>
<p><strong>Ask.com</strong><br />
1. Facebook<br />
2. YouTube<br />
3. Flowers<br />
4. What does my name mean<br />
5. MySpace<br />
6. Yahoo Mail<br />
7. Craigslist<br />
8. Dictionary.com<br />
9. Hotmail.com<br />
10. eBay</p>
<p><strong>Ask.com rising searches</strong><br />
1. Avatar<br />
2. Miracle of Hanukkah<br />
3. Christmas Songs<br />
4. Christmas Cards<br />
5. UFC 107<br />
6. The Princess and the Frog<br />
7. Heisman Trophy Winners<br />
8. Kwanzaa<br />
9. Jeff Hardy<br />
10. Kourtney Kardashian</p>
<p>According to this table and current date, people search much about <strong>Christmas</strong>, <strong>Christmas songs and cards</strong>, <strong>Avatar movie</strong>, people look for <strong>NFL</strong>, <strong>Twitter</strong>, <strong>YouTube</strong>, <strong>MySpace </strong>and <strong>eBay</strong>. People also watch the life of <strong>Brittany Murphy</strong>, <strong>Tiger Woods</strong>, <strong>Jeff Hardy</strong>, <strong>Lady Gaga</strong> and <strong>Santa</strong>.</p>
<p>If you look for quality content, try to include those keywords in your posts, write reviews about Christmas stuff, talk about new movies like Avatar and 2012, dig for famous people photos, songs and rumors.</p>
<p>Good luck with your SEO. Merry Christmas and Happy New Year! <img src='http://graphicmaniacs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://graphicmaniacs.com/note/worlds-top-search-queries/' addthis:title='World&#8217;s top search queries '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://graphicmaniacs.com/note/worlds-top-search-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add URLs to search engines</title>
		<link>http://graphicmaniacs.com/note/add-urls-to-search-engines/</link>
		<comments>http://graphicmaniacs.com/note/add-urls-to-search-engines/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 16:57:17 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://graphicmaniacs.com/?p=54</guid>
		<description><![CDATA[Many webmasters come to this point when developing the website. Here i&#8217;ve coupled up all the major search engines add url links to make the process even quicker: AnooX Search &#8211; add url Aport &#8211; add url Ask.com &#8211; follow this url and replace yoursite with your sitemap url: http://submissions.ask.com/ping?sitemap=http://www.yoursite.com/sitemap.xml Azoos &#8211; add url Beamed [...]<div class="addthis_toolbox addthis_default_style " addthis:url='http://graphicmaniacs.com/note/add-urls-to-search-engines/' addthis:title='Add URLs to search engines '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Many webmasters come to this point when developing the website. Here i&#8217;ve coupled up all the major search engines add url links to make the process even quicker:</p>
<ul>
<li>AnooX Search &#8211; <a href="http://www.anoox.com/add_for_indexing_free.jsp">add url</a></li>
<li>Aport &#8211; <a href="http://catalog.aport.ru/rus/add/AddUrl.aspx">add url</a></li>
<li>Ask.com &#8211; follow this url and replace <em>yoursite</em> with your sitemap url: http://submissions.ask.com/ping?sitemap=http://www.yoursite.com/sitemap.xml</li>
<li>Azoos &#8211; <a href="https://secure.azoos.com/addurl1.2.php">add url</a></li>
<li>Beamed &#8211; <a href="http://www.beamed.com/search/AddURL.html">add url</a></li>
<li>Bing &#8211; <a href="http://www.bing.com/webmaster/WebmasterAddSitesPage.aspx">add url</a></li>
<li>ExactSeek &#8211; <a href="http://www.exactseek.com/add.html">add url</a></li>
<li>GoGo.ru &#8211; <a href="http://gogo.ru/wmaster/add_site.html">add url</a></li>
<li>Google &#8211; <a href="http://www.google.com/addurl/">add url</a></li>
<li>Meta.ua &#8211; <a href="http://web.meta.ua/?action=add">add url</a></li>
<li>Nigma &#8211; <a href="http://www.nigma.ru/index_menu.php?action=click_menu&#038;menu_element=add_site">add url</a></li>
<li>New Web Directory &#8211; <a href="http://www.newwebdirectory.com/site-submission.html">add url</a></li>
<li>Rambler &#8211; <a href="http://www.rambler.ru/doc/add_site.shtml">add url</a></li>
<li>SearchWarp &#8211; <a href="http://searchwarp.com/AddURL.asp">add url</a></li>
<li>Walhello &#8211; <a href="http://www.walhello.com/addlinkgl.html">add url</a></li>
<li>WhatUSeek.com &#8211; <a href="http://www.whatuseek.com/addurl.shtml">add url</a></li>
<li>Yahoo &#8211; <a href="http://search.yahoo.com/info/submit.html">add url</a></li>
<li>Yandex &#8211; <a href="http://webmaster.yandex.ru/">add url</a></li>
</ul>
<h4>This page can be found by searching for:</h4><div class='search-terms'><span>rambler ru add url</span><span>add url to rambler ru</span></div><br /><br /><div class="addthis_toolbox addthis_default_style " addthis:url='http://graphicmaniacs.com/note/add-urls-to-search-engines/' addthis:title='Add URLs to search engines '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://graphicmaniacs.com/note/add-urls-to-search-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

