<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Max Response Media</title>
	
	<link>http://maxresponsemedia.com</link>
	<description>Web Development, Mobile Apps and Web Design</description>
	<lastBuildDate>Mon, 19 Sep 2011 11:48:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/maxresponsemedia" /><feedburner:info uri="maxresponsemedia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Nginx “X-Accel-Redirect” Setup in Rails 3</title>
		<link>http://feedproxy.google.com/~r/maxresponsemedia/~3/MIUrU5GM-1M/</link>
		<comments>http://maxresponsemedia.com/rails/nginx-x-accel-redirect-setup-in-rails-3/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 22:53:45 +0000</pubDate>
		<dc:creator>maxresponse</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<guid isPermaLink="false">http://maxresponsemedia.com/?p=317</guid>
		<description><![CDATA[I was just setting up a new web app on our staging server and came across something I haven&#8217;t run into before&#8230;figured I&#8217;d post it here in case someone else finds it useful.  If you&#8217;re having trouble with static files not showing up and you&#8217;re running Nginx and Rails 3, read on for all the [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://maxresponsemedia.com/rails/nginx-x-accel-redirect-setup-in-rails-3/" title="Permanent link to Nginx &#8220;X-Accel-Redirect&#8221; Setup in Rails 3"><img class="post_image alignleft frame" src="http://maxresponsemedia.com/images/nginx.jpg" width="375" height="200" alt="Post image for Nginx &#8220;X-Accel-Redirect&#8221; Setup in Rails 3" /></a>
</p><p>I was just setting up a new web app on our staging server and came across something I haven&#8217;t run into before&#8230;figured I&#8217;d post it here in case someone else finds it useful.  If you&#8217;re having trouble with static files not showing up and you&#8217;re running Nginx and Rails 3, read on for all the details on this quick and easy fix.</p>
<p><span id="more-317"></span></p>
<div style="clear:both;"></div>
<p><span style="font-family: arial, helvetica, sans-serif;"><strong>The Problem:</strong></span></p>
<p>We&#8217;re running Nginx and have several static files that are in a &#8220;themes&#8221; directory.  I kept getting pages that had no images and no styling and figured there must be something going on with the way those files are being called.</p>
<p><strong><span style="font-family: arial, helvetica, sans-serif;">The Solution:</span></strong></p>
<p>It turns out this has to do with a setting in Nginx, but it&#8217;s super simple to fix in Rails 3.</p>
<p>Look in /environments/production.rb and you&#8217;ll see something like this:</p>
<p>[bash]<br />
  # Specifies the header that your server uses for sending files<br />
  config.action_dispatch.x_sendfile_header = &#8220;X-Sendfile&#8221;</p>
<p>  # For nginx:<br />
  # config.action_dispatch.x_sendfile_header = &#8216;X-Accel-Redirect&#8217;<br />
[/bash]</p>
<p>Change it so it looks like this instead:</p>
<p>[bash]<br />
  # Specifies the header that your server uses for sending files<br />
  #config.action_dispatch.x_sendfile_header = &#8220;X-Sendfile&#8221;</p>
<p>  # For nginx:<br />
  config.action_dispatch.x_sendfile_header = &#8216;X-Accel-Redirect&#8217;<br />
[/bash]</p>
<p>You may need to restart Nginx and/or Phusion Passenger.</p>
<p>Afterwards, you should be good to go, with those static files being served just like you expected.</p>
<img src="http://feeds.feedburner.com/~r/maxresponsemedia/~4/MIUrU5GM-1M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://maxresponsemedia.com/rails/nginx-x-accel-redirect-setup-in-rails-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://maxresponsemedia.com/rails/nginx-x-accel-redirect-setup-in-rails-3/</feedburner:origLink></item>
		<item>
		<title>Setting Up User Subdomains in Rails 3</title>
		<link>http://feedproxy.google.com/~r/maxresponsemedia/~3/iFdwIoFRTY0/</link>
		<comments>http://maxresponsemedia.com/rails/setting-up-user-subdomains-in-rails-3/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 14:24:32 +0000</pubDate>
		<dc:creator>maxresponse</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<guid isPermaLink="false">http://maxresponsemedia.com/?p=307</guid>
		<description><![CDATA[One of the most common patterns in Rails apps is having a feature that allows your users to have their own subdomain.  We were recently working on a Rails 3 application that includes this type of functionality and figured we&#8217;d post a few of our tips for making this type of setup work. Defining the [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://maxresponsemedia.com/rails/setting-up-user-subdomains-in-rails-3/" title="Permanent link to Setting Up User Subdomains in Rails 3"><img class="post_image alignleft frame" src="http://maxresponsemedia.com/images/subdomain.jpg" width="375" height="200" alt="Post image for Setting Up User Subdomains in Rails 3" /></a>
</p><p>One of the most common patterns in Rails apps is having a feature that allows your users to have their own subdomain.  We were recently working on a Rails 3 application that includes this type of functionality and figured we&#8217;d post a few of our tips for making this type of setup work.<span id="more-307"></span><strong></strong><br />
<!--more--></p>
<div style="clear:both;"></div>
<p><strong>Defining the Problem</strong></p>
<p>For our application, we wanted to have subdomains for each user, but we also have static pages for the main site.  Those static pages include things like the &#8220;about us&#8221;, &#8220;contact&#8221; and &#8220;help&#8221; pages.  It&#8217;s reasonable to expect that a user&#8217;s website could look something like &#8220;<span style="color: #0000ff;">mysite.rootdomain.com/about</span>&#8221; and the main site could also have a page like &#8220;<span style="color: #0000ff;">rootdomain.com/about</span>&#8220;.  We wanted to make sure that Rails can distinguish incoming requests for one &#8220;about&#8221; page or the other.</p>
<p><strong>Setting up Routes for Subdomains in Rails 3</strong></p>
<p>Rails 3 makes it pretty easy to configure your routes to handle this type of setup, but to do this, we had to use &#8220;<a href="http://guides.rubyonrails.org/routing.html#advanced-constraints" target="_blank">advanced constraints</a>&#8221; in our routes.  Basically, you can create a class in your /lib directory that responds to the <strong>matches?</strong> method.  In that method, you can specify what conditions constitute a &#8220;match&#8221;.  Then, in your routes file,  you can use that class to define routes that only apply when those conditions are true.</p>
<p>For example, we needed to check two possible cases &#8211; (1) the request came from a subdomain or (2) the request came from the root domain.</p>
<p>We created a file called /lib/domains.rb, which includes the following:</p>
<p>[ruby]<br />
# /lib/domains.rb</p>
<p>class Subdomain<br />
  def self.matches?(request)<br />
    request.subdomain.present? &#038;&#038; request.subdomain != &#8220;www&#8221; &#038;&#038; request.subdomain != &#8220;&#8221;<br />
  end<br />
end</p>
<p>class RootDomain<br />
  @subdomains = ["www"]<br />
  def self.matches?(request)<br />
    @subdomains.include?(request.subdomain) || request.subdomain.blank?<br />
  end<br />
end<br />
[/ruby]</p>
<p>Here, we are saying that a &#8220;subdomain&#8221; is matched when there&#8217;s a subdomain present in the request AND when that subdomain is not &#8220;www&#8221; or &#8220;&#8221;.  And the &#8220;root domain&#8221; is matched when the subdomain is either &#8220;www&#8221; or &#8220;&#8221;.</p>
<p>With that taken care of, we can move to the routes.rb file and setup our routes for each of these cases, as follows:</p>
<p>[ruby]</p>
<p># config/routes.rb<br />
# a bunch of other routes&#8230;</p>
<p>  # requiring the /lib/domains.rb file we created<br />
  require &#8216;domains&#8217;</p>
<p>  constraints(Subdomain) do<br />
    match &#8216;/&#8217; => &#8216;websites#show&#8217;<br />
  end</p>
<p>  constraints(RootDomain) do<br />
    match &#8216;/contact_us&#8217;, :to => &#8216;static_pages#contact&#8217;<br />
    match &#8216;/about&#8217;,      :to => &#8216;static_pages#about&#8217;<br />
    match &#8216;/help&#8217;,       :to => &#8216;static_pages#help&#8217;<br />
    match &#8216;/news&#8217;,       :to => &#8216;static_pages#news&#8217;<br />
    match &#8216;/admin&#8217;,      :to => &#8216;admin#index&#8217;<br />
  end<br />
[/ruby]</p>
<p>Here, you can see a block using the Subdomain class that&#8217;s telling Rails that if the incoming request matches what we defined as a &#8220;subdomain&#8221;, then route to the websites#show action.  From that point, we can leave it to the websites controller to determine which user&#8217;s website we need to show (based on the subdomain, which is unique) and then off to the view to display the correct user website.  Not bad so far.  But what about requests for the root domain?</p>
<p><strong>Requests for the Root Domain and Avoiding Conflicts with Subdomain Requests</strong></p>
<p>We want to account for requests that match what we defined as a &#8220;domain&#8221;, and we want to do this separately so that a subdomain and the root domain can have matching path &#8211; for example, in both cases, you could be requesting an <span style="color: #0000ff;">/about</span> page.</p>
<p>So above, in our routes.rb file, we&#8217;re also telling Rails that if an incoming request matches is a &#8220;domain&#8221;, the use the routes in the associated block to route those requests.</p>
<p><strong>Conclusion</strong></p>
<p>So those are the basics of what we did.  We now have user websites that can be accessed using their unique subdomains.  We can also still get to all our pages on the main site and don&#8217;t have to worry about conflicts between pages with matching names.</p>
<p>For full details, see the Rails 3 Guide covering <a href="http://guides.rubyonrails.org/routing.html#advanced-constraints" target="_blank">Rails Routing from the Outside</a> In or the <a href="http://railscasts.com/episodes/221-subdomains-in-rails-3" target="_blank">Railscast on Subdomains</a> that covered this.</p>
<img src="http://feeds.feedburner.com/~r/maxresponsemedia/~4/iFdwIoFRTY0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://maxresponsemedia.com/rails/setting-up-user-subdomains-in-rails-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://maxresponsemedia.com/rails/setting-up-user-subdomains-in-rails-3/</feedburner:origLink></item>
		<item>
		<title>5 Strategies for a More Profitable Business Website</title>
		<link>http://feedproxy.google.com/~r/maxresponsemedia/~3/cF_I07zcO2I/</link>
		<comments>http://maxresponsemedia.com/web-basics/5-strategies-for-a-more-profitable-business-website/#comments</comments>
		<pubDate>Mon, 23 May 2011 23:22:20 +0000</pubDate>
		<dc:creator>maxresponse</dc:creator>
				<category><![CDATA[Web Basics]]></category>
		<guid isPermaLink="false">http://maxresponsemedia.com/?p=225</guid>
		<description><![CDATA[It&#8217;s an unfortunate fact that most business websites are grossly unprofitable&#8230;not nearly reaching their full potential as the excellent marketing and sales tools the could be. Here are a few tips for increasing the profitability of your business website. 1. Have Good Content To have an effective website these days, you absolutely need to have good content. [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://maxresponsemedia.com/web-basics/5-strategies-for-a-more-profitable-business-website/" title="Permanent link to 5 Strategies for a More Profitable Business Website"><img class="post_image alignleft" src="http://maxresponsemedia.com/images/five.jpg" width="375" height="200" alt="Post image for 5 Strategies for a More Profitable Business Website" /></a>
</p><p>It&#8217;s an unfortunate fact that most business websites are grossly unprofitable&#8230;not nearly reaching their full potential as the excellent marketing and sales tools the <em>could</em> be. Here are a few tips for increasing the profitability of your business website.</p>
<div style="clear:both;"></div>
<p><strong>1. Have Good Content</strong></p>
<p>To have an effective website these days, <strong>you absolutely need to have good content</strong>. But don&#8217;t worry, it doesn&#8217;t have to be Pulitzer prize winning writing. Just focus on providing your website visitors, prospects or customers with informative articles that help them solve a problem, ideally one tied to the same problems your business helps solve. But keep it informative, not a sales pitch.</p>
<p><strong>2. Build an EMail List for Automated Follow-Up</strong></p>
<p>Nearly every business website I see gets this wrong to one degree or another. It&#8217;s important to realize that these days, your prospects are probably taking longer to make a decision on whether or not to do business with you. Therefore, it&#8217;s important to have a way to continue to follow up with your website visitors to stay &#8220;top of mind&#8221; and to continue to educate them about the benefits of your offer(s). Email is one solution.</p>
<p>But people are also increasingly skeptical about giving out their email address, so you need to offer some sort of enticing &#8220;freebie&#8221; to convince them to do so. Make sure they know you won&#8217;t SPAM them (and be sure you don&#8217;t!). And be sure to put the signup form on every page of your site. And not just a link to a signup page, but an actual form, right there on the page, that they can use to sign up. You can see how we implement this on our site. <strong><em>In fact, why not signup so you can see the whole process? (Shameless plug)</em></strong></p>
<p><strong>3. Consider Using Video</strong></p>
<p>With the growing popularity of sites like YouTube, just about every business can benefit from creating short, informative videos to help educate their website visitors. Not only can you easily add these videos to your site, but you can also gain exposure to your business since YouTube is one of the sites with the highest amount of traffic on the entire Internet.</p>
<p><strong>4. Use Good Web Copy</strong></p>
<p>The web copy on most business websites is entirely too &#8220;me, us, our&#8221; focused with not enough emphasis on what;s in it for the customer. Take a look at your copy and see if you&#8217;re really talking about how the customer benefits from buying your product/service. For good examples, listen to how they pitch things on infomercials&#8230;not for the specifics of the offer, but how they present them. You&#8217;ll almost always hear lots of wording about &#8220;how fast you&#8217;ll see results&#8221;, &#8220;how easy it is to use&#8221; and so on.</p>
<p><strong>5. Test and Track Everything</strong></p>
<p>Even if you have a ton of traffic coming to your site, if those visitors aren&#8217;t turning into sales, your site still isn&#8217;t getting the job done. Another thing that most business owners are unwilling or unable to do is test elements of their website to improve its performance. That could include things like the number of sales, subscriptions, phone calls or whatever action you want people to take when they visit your site. Installing tools like <a rel="nofollow" href="http://www.google.com/analytics" target="_blank">Google Analytics</a> and <a rel="nofollow" href="http://www.google.com/websiteoptimizer" target="_blank">Google Website Optimizer</a> can be good, free and easy ways to get this valuable info.</p>
<p><strong>Bonus Tip &#8211; Consider Investing in Search Engine Optimization (Especially Local Search / Local SEO)</strong></p>
<p>One thing that&#8217;s common about many businesses is that often times, their customers are local. These types of businesses are in a great position to take advantage of local search or local search engine optimization.</p>
<p>For example, website visitors searching for specific local terms like &#8220;<em>Maryland massage therapist</em>&#8221; are obviously looking for something specific and are much more likely to be buyers rather than tire kickers. Besides, that type of business wouldn&#8217;t see many benefits from ranking for the more generic term &#8220;<em>massage therapist</em>&#8220;. The good thing about doing this is that <strong>most of your competition won&#8217;t have a clue</strong> and those that do probably aren&#8217;t focused on the Internet as a primary marketing method.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/maxresponsemedia/~4/cF_I07zcO2I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://maxresponsemedia.com/web-basics/5-strategies-for-a-more-profitable-business-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://maxresponsemedia.com/web-basics/5-strategies-for-a-more-profitable-business-website/</feedburner:origLink></item>
		<item>
		<title>Why a Website is a Key to Your Small Business Success</title>
		<link>http://feedproxy.google.com/~r/maxresponsemedia/~3/dhVEwG7LP4k/</link>
		<comments>http://maxresponsemedia.com/web-basics/why-a-website-is-a-key-to-your-small-business-success/#comments</comments>
		<pubDate>Mon, 23 May 2011 23:14:48 +0000</pubDate>
		<dc:creator>maxresponse</dc:creator>
				<category><![CDATA[Web Basics]]></category>
		<guid isPermaLink="false">http://maxresponsemedia.com/?p=213</guid>
		<description><![CDATA[Every so often, I come across an established business that still doesn&#8217;t have a website.  For one reason or another, some business owners don&#8217;t think they need a website for &#8220;their kind of business&#8221;. And while that might be true for a handful of businesses I can think of, the vast majority of companies could [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://maxresponsemedia.com/web-basics/why-a-website-is-a-key-to-your-small-business-success/" title="Permanent link to Why a Website is a Key to Your Small Business Success"><img class="post_image alignleft" src="http://maxresponsemedia.com/images/key.jpg" width="375" height="200" alt="Post image for Why a Website is a Key to Your Small Business Success" /></a>
</p><p>Every so often, I come across an established business that still doesn&#8217;t have a website.  For one reason or another, some business owners don&#8217;t think they need a website for &#8220;their kind of business&#8221;. And while that might be true for a handful of businesses I can think of, the vast majority of companies could greatly benefit from having a website, especially if that website is setup in such a way that makes it easy for the business owner (or staff) to use without spending months learning HTML and so on. Here are just a few ways that a website can be a key component to your business success.</p>
<p><strong>1. Market Your Products and Services</strong> &#8211; The first and most obvious is way is that a website helps you market your products and services. More and more people are searching online first when looking for companies to do business with, even for local businesses where you might expect phone books or other traditional sources to be used more often. If you can make a case for being in the phone book, you should definitely be online as well.</p>
<p><strong>2. Educate Your Market</strong> &#8211; Unless you sell a low-cost service or commodity product, you&#8217;ll probably need to educate your customer a bit before they decide to make a purchase. No matter what the product or service, a website is a great way to educate your market about how to purchase whatever it is that you offer and help them understand why your company is the best choice for that purchase. You can also demonstrate the value your product or service offers, which is especially helpful for higher-priced items that might otherwise cause sticker shock unless that price is adequately justified.</p>
<p><strong>3. Establish Expertise</strong> &#8211; For most businesses (and especially those that charge higher fees), people generally want to know that they&#8217;re dealing with an expert in their field. A website can be a great way to demonstrate your expertise through publishing articles, before and after photos, videos or other types of content.</p>
<p><strong>4. Provide &#8220;Social Proof&#8221; </strong>- Social proof is simply the idea that all of us are more likely to believe what someone else says about you and your company versus what you say about your company. A website is a fantastic way to provide this &#8220;social proof&#8221; through the form of testimonials. If you have an established business, you probably already have plenty of testimonials you could use on your website (or could easily get testimonials). This would go a long way to separating your business from the competition and helping to establish your credibility. Speaking of which&#8230;</p>
<p><strong>5. Establish Credibility</strong> &#8211; A website helps your credibility in a number of ways. First, re-read those sections on establishing expertise and social proof. But those are just a couple of ways. The other thing to keep in mind is that these days, people expect a &#8220;real business&#8221; to have a website, with its own website address (not a site hosted on some freebie service). People seeing your newspaper ad or other advertising may want to visit your website to see examples of your work, learn about your process or request more info. Not having a website might make you seem like a &#8220;less serious&#8221; business than the competition.</p>
<p><strong>6. Provide Customer Support </strong>- Your website can also serve as a customer support aid. By publishing information like frequently asked questions or having web forms that allow customers to contact you in a non-interruptive way, you can take back control over some of your time while still addressing your customers&#8217; requests for assistance, questions and so on.</p>
<p><strong>7. Stay &#8220;Top of Mind&#8221;</strong> &#8211; It&#8217;s more expensive to get new customers than it is to keep existing customers. So it&#8217;s a good idea to stay &#8220;top of mind&#8221; with your satisfied customers and even your prospects. A few ways of doing this include using email marketing, blogging or having a customer message board. All of these are great ways to keep your customers coming back to you and your site over and over again and keeping your business on their minds. You never know when they might come across a friend that could benefit from your services or when they&#8217;ll need to purchase from you again.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/maxresponsemedia/~4/dhVEwG7LP4k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://maxresponsemedia.com/web-basics/why-a-website-is-a-key-to-your-small-business-success/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://maxresponsemedia.com/web-basics/why-a-website-is-a-key-to-your-small-business-success/</feedburner:origLink></item>
		<item>
		<title>Why a Simple 5 Page Site is the Last Thing Your Business Needs</title>
		<link>http://feedproxy.google.com/~r/maxresponsemedia/~3/AlhsDJhTJpU/</link>
		<comments>http://maxresponsemedia.com/web-marketing/why-a-simple-5-page-site-is-the-last-thing-your-business-needs/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 13:06:14 +0000</pubDate>
		<dc:creator>maxresponse</dc:creator>
				<category><![CDATA[Web Marketing]]></category>
		<guid isPermaLink="false">http://maxresponsemedia.com/?p=24</guid>
		<description><![CDATA[Pretty odd title coming from a company that, among other things, creates websites as one of its services.  But one of the things I hear time and time again from business owners typically sounds like this: &#8220;I just need a simple, 5 page website&#8221;. The number of pages is a bit unimportant&#8230;it could be 10, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://maxresponsemedia.com/web-marketing/why-a-simple-5-page-site-is-the-last-thing-your-business-needs/" title="Permanent link to Why a Simple 5 Page Site is the Last Thing Your Business Needs"><img class="post_image alignleft" src="http://maxresponsemedia.com/images/no.jpg" width="375" height="200" alt="Post image for Why a Simple 5 Page Site is the Last Thing Your Business Needs" /></a>
</p><p>Pretty odd title coming from a company that, among other things, creates websites as one of its services.  But one of the things I hear time and time again from business owners typically sounds like this: &#8220;I just need a simple, 5 page website&#8221;.</p>
<p>The number of pages is a bit unimportant&#8230;it could be 10, 20, whatever.  What&#8217;s more important is why thinking like this is just a way to set up your business&#8217;s online marketing efforts for failure and <strong>how to avoid wasting money on a website that doesn’t really help your business</strong>.<span id="more-24"></span></p>
<p>A lot of business owners I come in contact with say that they just need a &#8220;simple&#8221; website &#8211; something with a homepage, about us, services page, and perhaps a few others.  I don&#8217;t know if &#8220;simple&#8221; sometimes means &#8220;I don&#8217;t want to spend a lot of money&#8221; or if it&#8217;s more a case of not wanting something too extravagant or complicated.  The good news is that you can have a more effective website created without having to spend a fortune.  But let&#8217;s talk about why a &#8220;Simple 5 page website&#8221; is probably going to be a not-so-great investment for your business.</p>
<p><strong>Not Updated Often and No Reason for People or Search Engines to Return</strong><br />
 First of all, one of these simple sites is probably going to be a static website, meaning that there&#8217;s no new content added to the site over time.  It&#8217;s just the same pages, same list of services and so on.  The problem is that this doesn&#8217;t give people a good reason to come back to your website.  The same is true for the search engines, which tend to visit frequently updated websites much more often (for obvious reasons).  Many people ask why they&#8217;re not getting much traffic to their website.  The better question is &#8220;Are you giving people a good reason to come there in the first place?”</p>
<p><strong>Less Opportunity to Rank for a Variety of Keywords</strong><br />
 Having just a handful of pages also limits your site&#8217;s ability to rank well for a variety of keywords that people might be using to search for the types of products and services you offer.</p>
<p><strong>Less Credibility for Your Business</strong><br />
 A static website without any updates is also less credible these days.  Would you rather purchase from a company with a website that looks like it was built 8 years ago (with copyright info from 8 years ago) or a website that just posted a new article this week on some topic that helps you better understand how their product or service can help you?</p>
<p><strong>Less Chance to &#8220;Tell Your Company&#8217;s Story&#8221;</strong><br />
 Only having a few pages on your site doesn&#8217;t really give you a chance to fully tell your company&#8217;s story.  And by company story, I really mean how your products or services impact the lives of your customers.  What if you ended up on a chiropractor&#8217;s website and it just had a handful of pages and a contact form.  Then you find another one that has all the basics, plus several case studies about how the doctor was able to solve her patients&#8217; back pain, work injury or other problems.  Who would be more likely to earn your business?  Again, if you have any sort of customers (and by definition every business does), then your website is an excellent way to share your success stories and case studies with your website visitors, to toot your own horn a little bit and convince prospects why they should do business with you.</p>
<p><strong>Lousy Benefits for the Costs Involved</strong><br />
 The most insidious part of all of this is that some web companies will sell you a &#8220;simple 5 page website&#8221; with zero regard for how well it&#8217;s going to help your business.  And the cost?  Nearly the same as what you could pay for a more effective system.</p>
<p>Instead of investing in a &#8220;simple 5 page website&#8221;, we recommend that if you&#8217;re a business owner interested in setting up a new website or investing in a website re-design, you should get in touch with a professional web marketing company (such as us&#8230;shameless plug) that offers web design AND web marketing services.  Working with such a company, you&#8217;ll discover several options for making a more effective, more profitable website.  It will also help shift your thinking in terms of how to best use your website so that it becomes a powerful sales and marketing tool for your company that converts casual website visitors into lifelong customers.</p>
<img src="http://feeds.feedburner.com/~r/maxresponsemedia/~4/AlhsDJhTJpU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://maxresponsemedia.com/web-marketing/why-a-simple-5-page-site-is-the-last-thing-your-business-needs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://maxresponsemedia.com/web-marketing/why-a-simple-5-page-site-is-the-last-thing-your-business-needs/</feedburner:origLink></item>
	</channel>
</rss>

