<?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, 24 May 2012 11:11:11 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>Seo-Friendly Links with mod_rewrite</title><link>http://webhostinggeeks.com/blog/seo-friendly-links-with-mod_rewrite/</link> <comments>http://webhostinggeeks.com/blog/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>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><h3>Avoid duplicate content</h3><pre class="brush: bash; title: ; notranslate">
RewriteEngine On
# Redirect non-www to www.
RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
# Redirect direct requests for &quot;anything/index.html&quot; to &quot;anything/&quot;
RewriteRule ^(([^/]+/)*)index\.html http://www.example.com/$1 [R=301,L]
</pre><h3>Redirect relocated URLs</h3><pre class="brush: bash; title: ; notranslate">
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,L]
# Redirect relocated directories to the new directories
RewriteRule ^olddir/(.*) http://www.example.com/newdir/$1 [R=301,L]
</pre><h3>Redirect non-existing incoming links</h3><pre class="brush: bash; title: ; notranslate">
# 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]
</pre><h3>SEO-friendly URLs</h3><p>For example, your urls look like this:</p><p><b><em>http://www.example.com/widgets.php?cat=blue&amp;page=1</em></b></p><p>Obviously, you want to transform it into something that look like this:</p><p><b><em>http://www.example.com/widgets/blue/page1.php</em></b></p><pre class="brush: bash; title: ; notranslate">
RewriteEngine On
RewriteRule ^widgets/(.*)/page(.*)\.php /widgets.php?cat=$1&amp;amp;page=$2 [L]
</pre><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/optimizing-joomla-websites/" title="Optimizing Joomla Websites">Optimizing Joomla Websites</a></li><li><a
href="http://webhostinggeeks.com/blog/how-web-hosting-aids-in-seo/" title="How Web Hosting Aids in SEO">How Web Hosting Aids in SEO</a></li><li><a
href="http://webhostinggeeks.com/blog/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><a
href="http://webhostinggeeks.com/blog/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li><a
href="http://webhostinggeeks.com/blog/web-design-mistakes/" title="Top 5 Common Web Design Mistakes">Top 5 Common Web Design Mistakes</a></li><li><a
href="http://webhostinggeeks.com/blog/seo-importance/" title="The Importance of SEO">The Importance of SEO</a></li><li><a
href="http://webhostinggeeks.com/blog/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><a
href="http://webhostinggeeks.com/blog/apache-resurgence/" title="The Resurgence of Apache">The Resurgence of Apache</a></li><li><a
href="http://webhostinggeeks.com/blog/the-13-best-free-wordpress-plugins/" title="The 13 Best Free WordPress Plugins">The 13 Best Free WordPress Plugins</a></li><li><a
href="http://webhostinggeeks.com/blog/search-engine-optimization-tips-for-bing/" title="Search Engine Optimization tips for Bing">Search Engine Optimization tips for Bing</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/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/how-web-hosting-aids-in-seo/</link> <comments>http://webhostinggeeks.com/blog/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 name]]></category> <category><![CDATA[ecommerce]]></category> <category><![CDATA[seo]]></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><a
href="http://webhostinggeeks.com/blog/the-benefits-of-buying-an-existing-domain-name/" title="The Benefits of Buying an Existing Domain Name">The Benefits of Buying an Existing Domain Name</a></li><li><a
href="http://webhostinggeeks.com/blog/methods-for-increasing-page-speed-and-improving-search-engine-rankings/" title="Methods for Increasing Page Speed and Improving Search Engine Rankings">Methods for Increasing Page Speed and Improving Search Engine Rankings</a></li><li><a
href="http://webhostinggeeks.com/blog/essential-shopping-cart-attributes/" title="Essential Shopping Cart Attributes ">Essential Shopping Cart Attributes </a></li><li><a
href="http://webhostinggeeks.com/blog/how-to-tell-if-a-domain-name-is-valuable/" title="How to Tell If a Domain Name Is Valuable">How to Tell If a Domain Name Is Valuable</a></li><li><a
href="http://webhostinggeeks.com/blog/seo-friendly-links-with-mod_rewrite/" title="Seo-Friendly Links with mod_rewrite">Seo-Friendly Links with mod_rewrite</a></li><li><a
href="http://webhostinggeeks.com/blog/ascertaining-the-value-of-domain/" title="Ascertaining The Value of a Domain Name">Ascertaining The Value of a Domain Name</a></li><li><a
href="http://webhostinggeeks.com/blog/the-benefits-of-virtualized-hosting-for-ecommerce/" title="The Benefits of Virtualized Hosting for eCommerce ">The Benefits of Virtualized Hosting for eCommerce </a></li><li><a
href="http://webhostinggeeks.com/blog/3-steps-to-a-successful-ecommerce-site/" title="3 Steps to a Successful eCommerce Site">3 Steps to a Successful eCommerce Site</a></li><li><a
href="http://webhostinggeeks.com/blog/understanding-misspelled-domain-names/" title="Understanding Misspelled Domain Names">Understanding Misspelled Domain Names</a></li><li><a
href="http://webhostinggeeks.com/blog/knowing-the-value-of-your-domain/" title="Knowing the Value of Your Domain">Knowing the Value of Your Domain</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/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
Content Delivery Network via Amazon Web Services: CloudFront: d3pnguju6g7vh.cloudfront.net

Served from: webhostinggeeks.com @ 2012-05-25 13:06:18 -->
