<?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>Work your SEO - The internet Marketer and Webmaster Favourite Blog! &#187; Uncategorized</title>
	<atom:link href="http://www.workyourseo.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.workyourseo.com</link>
	<description>Advices, Internet Marketing Tips, Everyhting to help you make money online!</description>
	<lastBuildDate>Fri, 04 Jun 2010 00:14:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>301 Redirect for better SEO and other good reasons&#8230;</title>
		<link>http://www.workyourseo.com/2009/08/06/301-redirect-for-better-seo-and-other-good-reasons/</link>
		<comments>http://www.workyourseo.com/2009/08/06/301-redirect-for-better-seo-and-other-good-reasons/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 16:00:48 +0000</pubDate>
		<dc:creator>Yann de Champlain</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.workyourseo.com/?p=428</guid>
		<description><![CDATA[ You've just redesigned some pages of your web site. The pages have high search engine rankings that you don't want to lose. How can you safely redirect web site traffic from your old pages to the new pages without losing your rankings? You can do this by using a " 301 redirect "
What is [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial; color: #000080; font-size: x-small;"> </span><span style="font-family: Arial; font-size: x-small;">You've just redesigned some pages of your web site. The pages have high search engine rankings that you don't want to lose. How can you safely redirect web site traffic from your old pages to the new pages without losing your rankings? You can do this by using a " 301 redirect "</p>
<p></span><img class="alignleft size-full wp-image-429" title="301-Permanent-Redirect" src="http://www.workyourseo.com/wp-content/uploads/2009/08/301-Permanent-Redirect.gif" alt="301-Permanent-Redirect" width="240" height="265" /><span style="font-family: Arial; font-size: x-small;"><strong>What is 301 redirect?</strong><br />
</span><br />
<span style="font-family: Arial; font-size: x-small;"> 301 redirect is the best method to preserve your current search engine rankings when redirecting web pages or a web<br />
site. The code "301" is interpreted as "moved                        permanently". After the code, the URL of the missing or renamed page is<br />
noted, followed by a space, then followed by the new location or file name. You implement the 301 redirect by creating a .htaccess file.<br />
</span></p>
<p><span style="font-family: Arial; font-size: x-small;"> <strong>What is a .htaccess file?</strong></p>
<p>When a visitor/spider requests a web page, your web server checks for a .htaccess file. The .htaccess file contains specific instructions for certain requests, including security, redirection issues and how to handle certain errors.</p>
<p><strong>How to implement the 301 Redirect</strong></p>
<p>1. To create a .htaccess file, open notepad, name and save the file as .htaccess (there is no extension).</p>
<p>2. If you already have a .htaccess file on your server, download it to your desktop for editing.</p>
<p>3. Place this code in your .htaccess file:<br />
redirect 301 /old/old.htm http://www.you.com/new.htm</p>
<p>4. If the .htaccess file already has lines of code in it, skip a line, then add the above code.</p>
<p>5. Save the .htaccess file </span></p>
<p><span style="font-family: Arial; font-size: x-small;">6. Upload this file to the root folder of your server.</p>
<p>7. Test it by typing in the old address to the page you've changed. You should be immediately taken to the new location.</p>
<p><strong>Notes:</strong> Don't add "http://www" to the first part of the statement - place the path from the top level of your site to the page. Also ensure that you leave a single space between these elements:</p>
<p>redirect 301 (the instruction that the page has moved)</p>
<p>/old/old.htm (the original folder path and file name)</p>
<p>http://www.you.com/new.htm (new path and file name)</p>
<p>When the search engines spider your site again they will follow the rule you have created in your .htaccess file. The search engine spider doesn't actually read the .htaccess file, but recognizes the response from the server as valid.</p>
<p>During the next update, the old file name and path will be dropped and replaced with the new one. Sometimes you may see alternating old/new file names during the transition period, plus some fluctuations in rankings. According to Google it will take 6-8 weeks to see the changes reflected on your pages.</p>
<p><strong>Other ways to implement the 301 redirect:</strong></p>
<p>1. To redirect ALL files on your domain use this in your .htaccess file if you are on a unix web server:<br />
</span><span style="font-family: Arial; font-size: x-small;"> redirectMatch 301 ^(.*)$ http://www.domain.com<br />
redirectMatch permanent ^(.*)$ http://www.domain.com
<p>You can also use one of these in your .htaccess file:</p><p style="float: right;margin: 4px;"></p></p>
<p>redirect 301 /index.html http://www.domain.com/index.html<br />
redirect permanent /index.html http://www.domain.com/index.html<br />
redirectpermanent /index.html http://www.domain.com/index.html</p>
<p>This will redirect "index.html" to another domain using a 301-Moved permanently redirect.</p>
<p>2. If you need to redirect http://mysite.com to http://www.mysite.com and you've got mod_rewrite enabled                        on your server you can put this in your .htaccess file:</p>
<p></span><span id="intelliTxt">Options +FollowSymLinks<br />
RewriteEngine on<br />
RewriteCond %{HTTP_HOST} ^example.com<br />
RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]</span><span style="font-family: Arial; font-size: x-small;"></p>
<p>or this:</p>
<p></span><span id="intelliTxt0">Options +FollowSymLinks</span><span style="font-family: Arial; font-size: x-small;"><br />
RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^domain.com$ [NC]<br />
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]</p>
<p>Tip: Use your full URL (ie http://www.domain.com) when obtaining incoming links to your site. Also use your full URL for the internal linking of your site.</p>
<p>3. If you want to redirect your .htm pages to .php pages andd you've got mod_rewrite enabled on your server you can put this in your .htaccess file:</p>
<p>RewriteEngine on<br />
RewriteBase /<br />
RewriteRule (.*).htm$ /$1.php</p>
<p>4. If you wish to redirect your .html or .htm pages to .shtml pages because you are using Server Side Includes (SSI) add this code to your .htaccess file:</p>
<p>AddType text/html .shtml<br />
AddHandler server-parsed .shtml .html .htm<br />
Options Indexes FollowSymLinks Includes<br />
DirectoryIndex index.shtml index.html</p>
<p><strong>Frequently Asked Question:</strong><br />
What's the difference in using a 301 redirect versus a                        meta redirect?</p>
<p><strong> Meta Redirect</strong><br />
To send someone to a new page (or site) put this in the                        head of your document:</p>
<p>&lt;meta http-equiv="refresh" content="10; url=http://mynewsite.com/"&gt;</p>
<p>Content="10; tells the browser to wait 10 seconds before transfer, choose however long you would like, you can even choose 0 to give a smoother transition, but some (really old) browsers aren't capable of using this so I'd suggest putting a link on that page to your new site for them.</p>
<p>With a meta redirect the page with the redirect issues a 200 OK status and some other mechanism moves the browser over to the new URL. With a 200 OK on both pages, the search engine wants to index both the start page and the target page - and that is a known spam method (set up 10,000 domains full of keywords for the search engines to index then meta redirect the "real visitor" after 0 or 1<br />
seconds to the "real site" ) so using it gets you penalized.</p>
<p>The 301 redirect simply issues a Permanently Moved message in the HTTP header which tells the search engine to only<br />
index the target URL.</p>
<p><strong>Conclusion:</strong> The safest way to redirect old web pages to                        the new pages or old web site to the new web site and keep the same search engine rankings is to use the 301 redirect. It will also pass on the page rank from your old site to your new site.</span></p>
<p><span style="font-family: Arial; font-size: x-small;"><br />
</span></p>
<br/><br/>Sucess is in your hands,<br/>
<img src="http://www.e-soft.ca/images/yann.gif"><br/>
Yann de Champlain<br/>
<i><a href="http://www.workyourseo.com">Work Your SEO</i><br>
<i><a href="http://www.yanndechamplain.com">Yann's Personal blog</i><br><br>
<br>]]></content:encoded>
			<wfw:commentRss>http://www.workyourseo.com/2009/08/06/301-redirect-for-better-seo-and-other-good-reasons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submit your site to directories is useless!</title>
		<link>http://www.workyourseo.com/2009/07/06/submit-your-site-to-directories-is-useless/</link>
		<comments>http://www.workyourseo.com/2009/07/06/submit-your-site-to-directories-is-useless/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 13:53:31 +0000</pubDate>
		<dc:creator>Yann de Champlain</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.workyourseo.com/?p=401</guid>
		<description><![CDATA[Google's Webmaster Central team has posted a video Matt Cutts that answers the question: "Will Google consider Yahoo! Directory and BOTW as source of paid links? If no, why is this different from another site that sell links.
this is a very important answer for all of us. Look at it!

Summary:
Question : what kind of directories [...]]]></description>
			<content:encoded><![CDATA[<p>Google's Webmaster Central team has posted a video Matt Cutts that answers the question: "Will Google consider Yahoo! Directory and BOTW as source of paid links? If no, why is this different from another site that sell links.</p>
<p>this is a very important answer for all of us. Look at it!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/1Pu1YWcIh04&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/1Pu1YWcIh04&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><span id="ls_contents-0">Summary:<br />
Question : what kind of directories are seen as a source of paid links and if yahoo and botw directories charges money to list your websites and links then why they are not seen as any other sites selling paid links?</p>
<p>Answer : This is more like the regular template answer of matt cutts.</p>
<p>What is the value of a directory. Do they charge money to list your site, what is the editorial value of the directory. How do they list sites, do they only add links that are being submitted or they find links on their own?</p>
<p>If the editorial value is low, means all links submitted are approved then directory is selling paid links. fly by night directories, directories asking for submissions on the basis of page rank etc. directories accepting text, (am sure he means keywords here, or anchor text).</p>
<p>He says yahoo directory has good editorial value so its a good directory. </span></p>
<br/><br/>Sucess is in your hands,<br/>
<img src="http://www.e-soft.ca/images/yann.gif"><br/>
Yann de Champlain<br/>
<i><a href="http://www.workyourseo.com">Work Your SEO</i><br>
<i><a href="http://www.yanndechamplain.com">Yann's Personal blog</i><br><br>
<br>]]></content:encoded>
			<wfw:commentRss>http://www.workyourseo.com/2009/07/06/submit-your-site-to-directories-is-useless/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>x10media.com</title>
		<link>http://www.workyourseo.com/2009/02/05/x10mediacom/</link>
		<comments>http://www.workyourseo.com/2009/02/05/x10mediacom/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 01:10:00 +0000</pubDate>
		<dc:creator>Yann de Champlain</dc:creator>
				<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.workyourseo.com/?p=270</guid>
		<description><![CDATA[Hi,
Feb 1st I became the new owner of x10media.com. It all makes sense with my businesses around working at home...

X10media.com offers the best web scripts online; we don't focus only on one industry. We provide scripts for different areas of the internet and the scripts we design all have unique features. 
We strive to achieve [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Feb 1st I became the new owner of <a href="http://x10media.com">x10media.com</a>. It all makes sense with my businesses around working at home...</p>
<p><img class="aligncenter size-full wp-image-404" title="x10media" src="http://www.workyourseo.com/wp-content/uploads/2009/02/logo.gif" alt="x10media" width="273" height="70" /></p>
<p><span lang="EN-GB"><span style="font-size: small; font-family: Calibri;">X10media.com offers the best web scripts online; we don't focus only on one industry. We provide scripts for different areas of the internet and the scripts we design all have unique features. </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span lang="EN-GB"><span style="font-size: small; font-family: Calibri;">We strive to achieve our aim, success. <span style="mso-spacerun: yes;"> </span>Each year we release new products, to keep us fresh and up to date. What makes us stand out is our excellent support and fan base. At x10 we make our customers our number one priority, from the feedback we get, we improve. </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span lang="EN-GB"><span style="font-size: small; font-family: Calibri;">Our team of vibrant talent produce innovating ideas which make us one step ahead from competitors. From 2009 x10media will be the start of something new, our new management will enable us to maximize our expertise and boost our services. Whether youre a web developer or someone who wants to start a new business, we have the perfect scripts to get you started.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span lang="EN-GB"><span style="font-size: small; font-family: Calibri;">Following the recent credit crunch crisis, we understand it can be financially hard, so we have introduced new schemes which will support you, we have minimised our pricing and also introduced our latest addition to the site, our affiliation program. These scripts are ready to install and get monetized. </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span lang="EN-GB"><span style="font-size: small; font-family: Calibri;">Check <a href="http://www.x10media.com">x10media.com</a> for our latest offers and promotions!</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;">
<br/><br/>Sucess is in your hands,<br/>
<img src="http://www.e-soft.ca/images/yann.gif"><br/>
Yann de Champlain<br/>
<i><a href="http://www.workyourseo.com">Work Your SEO</i><br>
<i><a href="http://www.yanndechamplain.com">Yann's Personal blog</i><br><br>
<br>]]></content:encoded>
			<wfw:commentRss>http://www.workyourseo.com/2009/02/05/x10mediacom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
