<?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>Tampa Site Design &#187; SEO</title>
	<atom:link href="http://www.tampasitedesign.com/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tampasitedesign.com</link>
	<description>Chronicles of Website Design</description>
	<lastBuildDate>Sun, 08 Aug 2010 19:36:12 +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>SEO tips for new sites</title>
		<link>http://www.tampasitedesign.com/seo-tips-for-new-sites/</link>
		<comments>http://www.tampasitedesign.com/seo-tips-for-new-sites/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 05:10:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[capitalization]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[multiple sites]]></category>
		<category><![CDATA[new sites]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=64</guid>
		<description><![CDATA[Over the years, I&#8217;ve had to apply SEO to a wide variety of sites and it goes without saying, the best SEO is implemented when the site is built!
Nothing is worse than having to build around a messy site. What I mean by messy is lengthy URLS with pointless characters and crazy dynamic URLs! So [...]]]></description>
			<content:encoded><![CDATA[<p>Over the years, I&#8217;ve had to apply SEO to a wide variety of sites and it goes without saying, the best SEO is implemented when the site is built!</p>
<p>Nothing is worse than having to build around a messy site. What I mean by messy is lengthy URLS with pointless characters and crazy dynamic URLs! So here are my tips on creating an SEO-friendly site:</p>
<p>1) Use static URLs when possible. This might not be possible with really large sites, but if your site has less than 50 pages and doesn&#8217;t require new pages to be created all the time, this is definitely the way to go. This is definitely the easiest way and best for SEO. The second best is using an htaccess redirect to use a name in the URL and pass it as a GET variable. Something like this:</p>
<p>http://www.tampacreations.com/portfolio</p>
<p>In this case, portfolio is being passed as a GET variable, and you should always check this against an array of acceptable values! Combine that htaccess code with the proper rewrite condition to tack on the www, and handle forward slashes at the end too. Would you like to see it? Here&#8217;s the code I&#8217;m using:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">Options <span style="color: #339933;">-</span>Indexes
RewriteEngine On
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!</span>^www\<span style="color: #339933;">.</span>yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> ^<span style="color: #009900;">&#40;</span>www<span style="color: #339933;">.</span><span style="color: #009900;">&#41;</span>?yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!</span>^www\<span style="color: #339933;">.</span>yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>^<span style="color: #339933;">/</span>\<span style="color: #339933;">.</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>?$ index<span style="color: #339933;">.</span>php?page<span style="color: #339933;">=</span>$<span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#91;</span>L<span style="color: #009900;">&#93;</span></pre></div></div>

<p>So that&#8217;s the second best option if you have to go with dynamic URLs and it works pretty well! I believe I&#8217;m using PHP, then, to set 404 status of not found domains. </p>
<p>2) Search Pages can be a nightmare! Search pages can be problematic because they&#8217;re dynamic by nature and can end up having lots of variables in them. I think the trick here is to have a few of them indexed (the simple ones) and list those in your sitemap. The other ones you can let Google figure out or just deny it access.</p>
<p>3) Watch out for capitalization! Capitalization counts in URLs (just not the domain), so if I were to have a page Portfolio.html and portfolio.html, those are two different pages! If you&#8217;re using dynamic URLs, this can become a big problem with duplicate content.</p>
<p>4) Multiple websites. Lot of e-commerce site owners have the mentality that duplicating their entire store 5 times and putting it on 5 different domains helps their SEO out. Probably not a good idea. What ends up happening is since most stores have a lot of products, the owners use the same descriptions, same images, everything, and all the sites end up having duplicated content issues! I happy to report that a client I worked with who had this issue across 4 domains, downsized to one domain, and has twice as much traffic now after doing so in about 12 months. It takes time, but it&#8217;s worth it. The only way you should keep 5 different stores is if all the stores are different! Different product titles, different descriptions for each page, keywords, product descriptions, shipping text, contact text, etc. etc. etc. Everything should be completely different if you want to rank well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/seo-tips-for-new-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tampa Website Design Firm</title>
		<link>http://www.tampasitedesign.com/tampa-website-design-firm/</link>
		<comments>http://www.tampasitedesign.com/tampa-website-design-firm/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 22:58:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=55</guid>
		<description><![CDATA[Our website design and development service division is now complete! Introducing, Tampa Creations, the solution for website design, search engine optimization and more!
Tampa Website Design, TampaCreations.com
The thing that makes Tampa Creations different from most other website development firms is that it offers a full range of web services, from website design all the way to [...]]]></description>
			<content:encoded><![CDATA[<p>Our website design and development service division is now complete! Introducing, Tampa Creations, the solution for website design, search engine optimization and more!</p>
<p><a href="http://www.tampacreations.com/">Tampa Website Design, TampaCreations.com</a></p>
<p>The thing that makes Tampa Creations different from most other website development firms is that it offers a full range of web services, from website design all the way to social network marketing. This makes Tampa Creations a &#8220;web presence&#8221; provider, not just a website design firm. The benefit to businesses here is that one company handles the vertical integration of your online development and marketing, allowing each part to be connected and play a vital role in supporting the other.</p>
<p>Just how important is vertical marketing? Throughout years of working with clients, most clients don&#8217;t believe or don&#8217;t think about if they want to incorporate search engine optimization or website marketing techniques into their website in the future. Of course, many of those clients visit that possibility after they learn that traffic doesn&#8217;t come from nothing, you need optimization and internet marketing to drive the traffic to your website, after all, that&#8217;s one of the main benefits of having a website&#8230; free web traffic!</p>
<p>It&#8217;s important to look at your business and online strategy and decide if going after the web traffic is right for your model. If it is, having vertical integration allows your website to be built from the ground-up incorporating the best search engine optimization methods and even to start the marketing early on, kind of like priming an engine. If you don&#8217;t do this early on, it can become an overwhelming task to revisit and incorporate the right optimization, and even worse if the website has to be re-designed to allow it to rank properly. Don&#8217;t make these costly errors, put the additional small investment now into your website and design to prepare it for the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/tampa-website-design-firm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Branding</title>
		<link>http://www.tampasitedesign.com/web-branding/</link>
		<comments>http://www.tampasitedesign.com/web-branding/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 11:47:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=52</guid>
		<description><![CDATA[A notable topic is the subject of how to brand your website and internet presence. From most of my design and development experience, one thing I&#8217;ve learned is that a lot of time and money is wasted because the client typically is not sure on how to go about branding themselves. Of course, such branding [...]]]></description>
			<content:encoded><![CDATA[<p>A notable topic is the subject of how to brand your website and internet presence. From most of my design and development experience, one thing I&#8217;ve learned is that a lot of time and money is wasted because the client typically is not sure on how to go about branding themselves. Of course, such branding efforts usually do take some experience to see how the business works out online and what should be changed over time, but some things can be prevented.</p>
<p>1) <strong>Domain</strong>. Probably one of the most important is the domain you&#8217;re going to establish your business at. Choosing the domain comes down to the ultimate goal of your internet presence. If you&#8217;re looking for SEO then you should probably have keywords in your domain. If you&#8217;re looking for branding, then you should probably have something creative and memorable. Perhaps you&#8217;re looking for both, try then to fit a keyword or two into one short, memorable domain. The reason a domain is so important is because you&#8217;ll be investing a lot of time and work into either telling clients about the domain or optimizing it for ranking in Google. In either case, changing the domain later on will be a mess!</p>
<p>2) <strong>Social Networking</strong>. Some people get too overwhelmed with the idea of running MySpace, Facebook, Twitter, LinkedIn, etc. accounts. Figure out what your clients are interested in/sign-up on and use one, maybe two of these. That way you&#8217;re not spreading yourself to thin. If you&#8217;re on every network and not updating each as much, no one will care to read what you have to say. If you stick to one or two, you&#8217;ll be able to update your profile more often and keep people interested in coming to visit you.</p>
<p>3) <strong>Blogging</strong>. Think serious about this, don&#8217;t just start a blog because you can. You&#8217;ll need to stick with it. What&#8217;s the purpose of your blog? Do you have enough time to invest into your blog to keep it fresh (like the social network thing)? How often will you update? Try writing a couple articles first to see if it&#8217;s as easy as you think. Also, if you&#8217;re looking into blogging just to help people stay updated on your company, consider news releases instead. You can even use the same Wordpress (or other) software, just brand your blog as a new release platform. That way, you&#8217;re not expected to write so much or so often.</p>
<p>4) <strong>Multi-Websites</strong>. It&#8217;s fine to have more than one website, but each website should serve its own purpose. Don&#8217;t lose sight of each site&#8217;s purpose, keep clear goals for each site and measure them to make sure each site is working its end. Many clients will want to have multiple sites because they got a couple great different domains. Just because you have two domains doesn&#8217;t mean you need two websites! A domain is about $7/year. Hold on to the domain until you find something useful to do with it (as opposed to hiring a website developer to create a whole other site you don&#8217;t need, confusing yourself to what really is the purpose). Also, don&#8217;t put up a mirror copy of one site on another domain! If you desperately need to use another domain, you can use it for memorability/ease of typing and have it forward to main website, but no mirroring! This can destroy your online rankings as I&#8217;ve seen it dozens of times with clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/web-branding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

