Organic SEO Articles
21 Apr 2008 at 14:58 by Joshua J. Steimle
Because it can't accurately identify them. Frankly, I don't have much against Google having something against paid links. It's their search engine, they can do whatever they want with it. Of course I'd prefer they live and let live when it comes to paid links, for my own self-interest as someone who occasionally uses paid links as a way to build incoming links for my SEO clients.
But the problem is there's no way for Google--I should say "no effective way"--to differentiate between a paid link and one that isn't paid for.
Read Complete Entry
Comments (0)
digg it!
Add to del.icio.us
17 Apr 2008 at 09:31 by Joshua J. Steimle
A real description of an SEO firm on an SEO directory:
Full service 1-on-1 SEO marketing since 1996. Check out comprised month-to-month packages at SEOgame.com (Eg. $375 package will start out at 2,220 manual directories and 550 manual article directory submissions) Manual submission services will provide permanent 1-way links and include 3 project managers and 17 site submitters to get the job done right with lots of worrrrrrrrrrrrrrrrrk! Get to the top of the in less than a month for your top keywords today.
If you're shopping for SEO services and you hear this type of pitch, you might figure "Hey, it's only $375 and maybe I'll get something out of it even though it sounds too good to be true." But what you should be thinking is "For $375 I could take my wife out for a really, really nice night on the town, and the ROI would be higher to boot."
Read Complete Entry
Comments (2)
digg it!
Add to del.icio.us
20 Feb 2008 at 18:31 by Joshua J. Steimle
All too often we take over search engine optimization efforts for a new client, only to find that the last SEO firm or SEO professional they were using did so many things wrong it's going to be a major effort just to clean up their mess, let alone start making progress (although I suppose cleaning up is a form of progress, but you know what I mean).
Case in point, we just took over doing SEO for a billion-dollar enterprise with a substantial website, and what do you know, the last SEO people working on it stuffed the site full of stuffed image alt tags, stuffed keyword meta tags, stuffed url title tags, etc. And they were very thorough with their work in that they didn't repeat the content of the various tags, they mixed it up in every case so they aren't the same and therefore you can't do a simple search and replace to find them all. The slow way to get things done would be to edit every page by hand, deleting the offending code, but thankfully Dreamweaver lets you do a wildcard search and replace that is a lifesaver.
Read Complete Entry
Comments (2)
digg it!
Add to del.icio.us
8 Jan 2008 at 08:56 by Joshua J. Steimle
To do a 301 redirect on JSP pages simple modify this code for your own purposes and place it on the page you want to redirect:
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>
Read Complete Entry
Comments (0)
digg it!
Add to del.icio.us
3 Jan 2008 at 09:15 by Joshua J. Steimle
I would assume that most search engine optimization professionals in Utah are earning somewhere between $60-80K. But that's all it is, an assumption based on limited factual information. So, let's all find out what we make, shall we? That way if you're not making very much relative to other SEO types you can know to ask for a raise, and if you are making a lot, you can find comfort in the fact you're making more than most, and hopefully the others will soon get raises which will eventually raise the salary ceiling for everyone.
Read Complete Entry
Comments (8)
digg it!
Add to del.icio.us
29 Dec 2007 at 22:41 by Joshua J. Steimle
First of all, this only works on web servers running on Linux, like Apache. It's no good on a Windows server, which stinks, because I think this is the best way to do redirects because you can manage all the redirects on your entire site from one file, and you don't actually have to create files and directories or leave old ones in place in order for those urls to be redirected.
Here's the basic code you'll put in your .htaccess file, which either should already exist in the root directory of your website ("root directory" meaning the home directory of your website, where your homepage file is located) or which you'll need to create:
RewriteEngine On
RewriteRule ^directory/youroldpage.html$ http://www.yoursite.com/directory/yournewpage.html$1 [R=301]
Read Complete Entry
Comments (1)
digg it!
Add to del.icio.us
17 Dec 2007 at 12:34 by Joshua J. Steimle
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.yoursite.com/new-page/" );
?>
Pretty straightforward. I just did it for a bed and breakfast client of ours.
Read Complete Entry
Comments (2)
digg it!
Add to del.icio.us
14 Dec 2007 at 18:03 by Joshua J. Steimle
A lot of clients ask me whether I can point them to industry statistics showing what their conversion rate should be when using Google AdWords. Although it's perfectly understandable that a company would want to know how their conversion rate compares to their competitor's, this data is virtually impossible to get, and even if you could, it would be almost completely meaningless.
Unless...
Read Complete Entry
Comments (0)
digg it!
Add to del.icio.us
14 Dec 2007 at 00:43 by Joshua J. Steimle
I've had a lot of trouble finding code to do a 301 redirect in .NET, but I finally found some that works, courtesy of Keyvan.
<script runat="server">
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "http://www.mwi.com/")
End Sub
</script>
Read Complete Entry
Comments (0)
digg it!
Add to del.icio.us
Organic SEO Article Archives >>