<?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>Web Hosting Geeks&#039; Blog &#187; custom URL</title> <atom:link href="http://webhostinggeeks.com/blog/tag/custom-url/feed/" rel="self" type="application/rss+xml" /><link>http://webhostinggeeks.com/blog</link> <description>Web Hosting Industry News, Latest Trends, and Analyses.</description> <lastBuildDate>Thu, 09 Feb 2012 05:48:19 +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>Seo Friendly Links with mod_rewrite</title><link>http://webhostinggeeks.com/blog/2011/03/31/seo-friendly-links-with-mod_rewrite/</link> <comments>http://webhostinggeeks.com/blog/2011/03/31/seo-friendly-links-with-mod_rewrite/#comments</comments> <pubDate>Thu, 31 Mar 2011 17:06:00 +0000</pubDate> <dc:creator>Dmitry</dc:creator> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[Apache]]></category> <category><![CDATA[custom URL]]></category> <category><![CDATA[duplicate content]]></category> <category><![CDATA[mod_rewrite]]></category> <category><![CDATA[redirect]]></category> <category><![CDATA[RewriteEngine]]></category> <category><![CDATA[seo]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=1510</guid> <description><![CDATA[Apache&#8217;s mod_rewrite module solves several typical Search Engine Optimization (SEO) problems. It is a module which provides a powerful way to do sophisticated url manipulations. Not only can mod rewrite be used to avoid duplicate content, redirect moved urls or non existing inbound links, and create search engine friendly urls. It can also be used [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://webhostinggeeks.com/blog/wp-content/uploads/2011/03/mod_rewrite_logo.gif"><img
class="alignnone size-full wp-image-1509" title="mod rewrite seo tutorial" src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/03/mod_rewrite_logo.gif" alt="mod rewrite seo friendly links" width="504" height="212" /></a></p><p>Apache&#8217;s mod_rewrite module solves several typical Search Engine Optimization (SEO) problems. It is a module which provides a powerful way to do sophisticated url manipulations. Not only can mod rewrite be used to avoid duplicate content, redirect moved urls or non existing inbound links, and create search engine friendly urls. It can also be used for to gain higher PageRank and search engines rankings, get your web site indexed by the search engines, and receiving more visitors. Here are some the most popular url manipulations.</p><p><strong>Avoid duplicate content</strong></p><blockquote><pre>RewriteEngine On
# Redirect non-www to www.
RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]</pre><pre>
<pre># Redirect direct requests for "&lt;anything&gt;/index.html" to "&lt;anything&gt;/"
RewriteRule ^(([^/]+/)*)index\.html http://www.example.com/$1 [R=301,L]</pre></pre></blockquote><p><strong>Redirect relocated URLs</strong></p><blockquote><pre>RewriteEngine On
# Redirect relocated old urls to the new urls
RewriteRule ^oldpage\.html$ http://www.example.com/newpage.html [R=301,L]
RewriteRule ^directory/oldpage\.html$ http://www.example.com/directory/newpage.html [R=301,</pre><pre>
<pre># Redirect relocated directories to the new directories
RewriteRule ^olddir/(.*) http://www.example.com/newdir/$1 [R=301,L]</pre></pre></blockquote><p><strong>Redirect non existing incoming links</strong></p><blockquote><pre>RewriteEngine On

#+---------------------------------
#+ - BEGIN: URL fixup redirect routine
#+---------------------------------

# Get the requested URI, query string and hostname.
RewriteCond %{REQUEST_URI} ^(/[^?]*)([?].*)?$
RewriteRule . - [E=myUri:%1,E=myQuery:%2]

# Replace hmtl, htlm, and thml file extensions with html extension.
RewriteCond %{ENV:myUri} ^(.*)[.,](hmtl|htlm|thml)$ [NC]
RewriteRule . - [E=myRedirect:yes,E=myUri:%1.html]

# Replace comma(s) or multiple filetype delimiter periods in the url
# with a single period.
RewriteCond %{ENV:myUri} ^(.*)([,.]{2,}|,)((s?html?|php[1-9]?|aspx?|pdf|xls).*)$ [NC]
RewriteRule . - [E=myRedirect:yes,E=myUri:%1.%3]

# Remove invalid trailing characters
RewriteCond %{ENV:myUri} ^([/0-9a-z._\-]*)[^/0-9a-z._\-] [NC]
RewriteRule . - [E=myRedirect:yes,E=myUri:%1]

# Remove trailing punctutation
RewriteCond %{ENV:myUri} ^(.*)[._\-]+$
RewriteRule . - [E=myRedirect:yes,E=myUri:%1]

# Do the external 301 redirect only if needed and the resource exists
# at the corrected URI.
RewriteCond %{ENV:myRedirect} ^yes$ [NC]
RewriteCond %{DOCUMENT_ROOT}%{ENV:myUri} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{ENV:myUri} -d
RewriteRule . http://www.example.com%{ENV:myUri}%{ENV:myQuery} [R=301,L]

#+---------------------------------
#+ - END: URL fixup redirect routine
#+---------------------------------</pre></blockquote><p><strong>SEO-friendly URLs</strong></p><p>For example, your urls look like this: <em>http://www.example.com/widgets.php?cat=blue&amp;page=1</em></p><p>Obviously, you want to transform it into something that look like this: <em>http://www.example.com/widgets/blue/page1.php</em></p><blockquote><pre>
<pre>RewriteEngine On
RewriteRule ^widgets/(.*)/page(.*)\.php /widgets.php?cat=$1&amp;page=$2 [L]</pre></pre></blockquote><p>Good luck! You can find more info about seo at http://www.seocentro.com.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>April 17, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/04/17/how-web-hosting-aids-in-seo/" title="How Web Hosting Aids in SEO">How Web Hosting Aids in SEO</a></li><li>January 16, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/16/optimize-wordpress-search-engines/" title="Top 4 Ways to Optimize WordPress for Search Engines">Top 4 Ways to Optimize WordPress for Search Engines</a></li><li>December 1, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/01/seo-importance/" title="The Importance of SEO">The Importance of SEO</a></li><li>November 29, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/29/automate-twitter-relationship/" title="4 Steps to Automate Twitter Relationship Building in 15 Minutes">4 Steps to Automate Twitter Relationship Building in 15 Minutes</a></li><li>November 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/15/apache-resurgence/" title="The Resurgence of Apache">The Resurgence of Apache</a></li><li>September 25, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/25/search-engine-optimization-tips-for-bing/" title="Search Engine Optimization tips for Bing">Search Engine Optimization tips for Bing</a></li><li>September 21, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/21/search-engine-optimization-companies-worthy-cost/" title="Are Search Engine Optimization Companies – Worthy of the Cost?">Are Search Engine Optimization Companies – Worthy of the Cost?</a></li><li>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/add-ons-web-hosting-business/" title="Add-Ons That Will Save Your Web Hosting Business">Add-Ons That Will Save Your Web Hosting Business</a></li><li>September 14, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/14/dummies-guide-seo/" title="The Dummies&#8217; Guide To SEO">The Dummies&#8217; Guide To SEO</a></li><li>September 10, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/10/advice-search-engine-optimization/" title="Common Advice in Search Engine Optimization">Common Advice in Search Engine Optimization</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/03/31/seo-friendly-links-with-mod_rewrite/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How Web Hosting Aids in SEO</title><link>http://webhostinggeeks.com/blog/2009/04/17/how-web-hosting-aids-in-seo/</link> <comments>http://webhostinggeeks.com/blog/2009/04/17/how-web-hosting-aids-in-seo/#comments</comments> <pubDate>Fri, 17 Apr 2009 17:37:52 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[custom URL]]></category> <category><![CDATA[domain]]></category> <category><![CDATA[E-commerce]]></category> <category><![CDATA[search engine friendly]]></category> <category><![CDATA[search engine spider]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[SEO strategy]]></category> <category><![CDATA[URL]]></category> <category><![CDATA[website traffic]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=293</guid> <description><![CDATA[You probably know by now that web hosting is a popular service millions of people rely on to create their websites.  These services are used for everything from blogs and personal sites to e-commerce and community sites.  What many people don&#8217;t know is the importance of web hosting as it relates to search engine optimization.  [...]]]></description> <content:encoded><![CDATA[<p>You probably know by now that web hosting is a popular service millions of people rely on to create their websites.  These services are used for everything from blogs and personal sites to e-commerce and community sites.  What many people don&#8217;t know is the importance of web hosting as it relates to search engine optimization.  You can truly benefit from search engine traffic by leveraging your hosting solution and devising a sound SEO strategy.</p><p><strong>Domain and URLs</strong></p><p>Before even purchasing a web hosting plan, you probably want to get yourself a domain first.  If you already have a name registered with another host, it shouldn&#8217;t be difficult to transfer it over to a new provider.  If not, you can easily register one for about $10 a year.  When it comes to SEO, both your domain and URLs are extremely important.  This is because when the search engine spiders come crawling, they index your pages individually opposed to the website itself.  With most hosting solutions, you have the ability to create custom URLs, so when used in conjunction with your domain name, it makes a great way to increase visibility in the eyes of the search engines.</p><p><strong>Search Engine Friendly Features</strong></p><p>The features a web hosting provider offers can also benefit your SEO efforts.  Because optimizing for targeted search engine traffic has proven to be effective, many hosts now offer tools that help research and choose the best keywords for your site.  Another great feature is the handy web application.  These utilities give you graphical statistics on your website traffic, showing when visitors came in and where they come from.  They usually show you which search engine spiders visited your site as well.  Then you have companies that offer free search engine submissions, free marketing credits, Google webmaster tools and more.   The average web hosting package is loaded with an arsenal of tools that can aid in SEO.</p><p><strong>Finding the Right Solution</strong></p><p>Although web hosting plays a major role in SEO, the actual results all depends on the hosting company.  This is why it is so crucial to put an emphasis on quality and reliability rather than the cost of service.  There are many types of hosting out there and finding a cheap solution is easier than ever before.  When looking for a service, you need to keep in mind that you are essentially placing the fate of your search engine rankings in the hands of another company.  This is one relationship where trust is key.  Without doing your research and rushing into a service, you can end up with a solution that does more harm to your visibility than good.  Worst of all, you may not even be aware of it.</p><p>You should also be cautious about hosting multiple domains on a single account and server.  While this may seem like a practical and cost effective move, it could also hinder your cause.</p><p>It is speculated that search engines view linking from within the same IP address as a move done to generate false link popularity.  In order to get the best results, SEO and web hosting need to work in perfect harmony.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>March 31, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/03/31/seo-friendly-links-with-mod_rewrite/" title="Seo Friendly Links with mod_rewrite">Seo Friendly Links with mod_rewrite</a></li><li>December 2, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/12/02/getting-started-with-your-seo-strategy/" title="Getting Started With Your SEO Strategy">Getting Started With Your SEO Strategy</a></li><li>March 18, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/03/18/how-does-search-engine-optimization-relate-to-your-web-host/" title="How Does Search Engine Optimization Relate to Your Web Host?">How Does Search Engine Optimization Relate to Your Web Host?</a></li><li>February 24, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/02/24/selecting-an-seo-oriented-web-hosting-plan/" title="Selecting an SEO-Oriented Web Hosting Plan ">Selecting an SEO-Oriented Web Hosting Plan </a></li><li>September 23, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/09/23/how-search-engine-friendly-is-your-domain-name/" title="How Search Engine-Friendly is Your Domain Name?">How Search Engine-Friendly is Your Domain Name?</a></li><li>May 8, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/05/08/three-essential-elements-of-seo/" title="Three Essential Elements of SEO">Three Essential Elements of SEO</a></li><li>April 29, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/04/29/using-a-generic-domain-for-seo-purposes/" title="Using a Generic Domain for SEO Purposes ">Using a Generic Domain for SEO Purposes </a></li><li>February 20, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/02/20/optimizing-your-website-for-msn/" title="Optimizing Your Website for MSN">Optimizing Your Website for MSN</a></li><li>January 16, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/16/optimize-wordpress-search-engines/" title="Top 4 Ways to Optimize WordPress for Search Engines">Top 4 Ways to Optimize WordPress for Search Engines</a></li><li>December 19, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/19/top-domain-registrars/" title="Top 10 Domain Registrars">Top 10 Domain Registrars</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2009/04/17/how-web-hosting-aids-in-seo/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: webhostinggeeks.com @ 2012-02-09 21:25:08 -->
