Is SEO knowledge important for web developers? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:10:45Z http://stackoverflow.com/feeds/question/312347 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers 21 Is SEO knowledge important for web developers? splattne 2008-11-23T09:47:41Z 2009-11-02T13:09:24Z <p>Looking for some <strong>SEO (Search engine optimization) questions</strong> on Stackoverflow, I saw ambivalent reactions to these questions. Some were closed as "not programming related" or were downvoted, others were answered and got upvoted.</p> <p>It seems that many developers think SEO was something "dirty" or belonged in the realm of spam. IMHO designing for search engines and practising SEO techniques adds important value to the final product like, for example, a good user interface.</p> <p>Should SEO really be left to specialized non-programmers? Shouldn't web developers have profound SEO knowledge? Or is it okay to apply SEO as a post-development process?</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/312353#312353 12 Answer by Chris for Is SEO knowledge important for web developers? Chris 2008-11-23T10:02:48Z 2008-11-23T10:02:48Z <blockquote> <p>Shouldn't web developers have profound SEO knowledge?</p> </blockquote> <p>I think the creators of this site would be in a very good position to answer that question, and based on what I've seen here (and my own experience), the answer is a resounding yes!</p> <p>SEO* is one of those things that nobody thinks about until it's too late. Neither the management team nor the system admins maintaining the site have the ability to affect change where this subject is concerned, so in most cases, the optimal scenario is one where the designer / developer employs SEO during the development cycle.</p> <p>*When I say SEO, I mean things like alt tags, meta tags, css text-indent usage for buttons rendered as background images, and of course, a decent sitemap. I don't consider some of the more shady "SEO" tactics to fall within the scope of legitimate SEO.</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/312354#312354 10 Answer by phjr for Is SEO knowledge important for web developers? phjr 2008-11-23T10:05:48Z 2008-11-23T10:05:48Z <p>I think you're right about SEO being "non-dirty". It is not the same as spam (we have a name for that: black-hat SEO).</p> <p>Now of course many issues about SEO, like copywriting, consulting with client etc. should be probably left for a dedicated professional. But there are some issues, that the programmer should know to make the site more SEO-able.</p> <p>For example:</p> <ul> <li>friendly URLs (like products/car instead of index.php?id=123&amp;cat=5)</li> <li>meta tags (index/noindex etc)</li> <li>lean HTML, fast loading</li> <li>providing good possibilities for SEO professional to optimize the site (whatever it means)</li> </ul> <p>Now IMHO you can't add all of these at the and (or you can, but with a high cost). Many of them affect design of application, so it's good to take them into consideration from the start.</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/312355#312355 2 Answer by stevemegson for Is SEO knowledge important for web developers? stevemegson 2008-11-23T10:06:19Z 2008-11-23T10:06:19Z <p>I think it's similar to other design concerns like usability, accessibility, and graphic look and feel. It's good to have specialists with the deep and profound knowledge, but all developers should know enough about it to build "OK" solutions on their own and to know when they should ask the specialists for help. The specialists will be worrying about exactly which terms we should optimising for and how, and their detailed changes can generally be applied as a post-development step. However, the developers need to know enough not to produce a pathologically SEO-unfriendly solution before that step.</p> <p>Your SEO experts can worry about eaxctly what goes in the title, h1 and description, but the developers need to be sure to make these things easy to optimise. More importantly, then need to know how site structure affects SEO, most obviously not hiding a whole section of the site behind a form or Javascript menu that spiders can't navigate, and not having many different URLs for the same content.</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/312356#312356 7 Answer by Greg for Is SEO knowledge important for web developers? Greg 2008-11-23T10:06:35Z 2009-02-22T12:44:36Z <p>IMHO there are two kinds of SEO: the good and the bad. A web developer should definitely know about the good kind of SEO, for example:</p> <ul> <li>The value of a good URL structure</li> <li>Clean, concise, well thought out markup</li> <li>When to use a 301 and when to use a 302 header for redirects</li> <li>Forming good links (i.e. not "click here")</li> </ul> <p>They shouldn't need to know about the bad kind, for example:</p> <ul> <li>Creating a link farm</li> <li>Spamming blogs etc.</li> <li>Hiding text (with CSS or javascript redirects)</li> </ul> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/312429#312429 17 Answer by Toby Mills for Is SEO knowledge important for web developers? Toby Mills 2008-11-23T12:00:23Z 2008-11-23T12:00:23Z <p>Developers should definitely have a good knowledge of SEO techniques mainly because they are the same as good clean html development. By which i mean (to name a few) :</p> <ul> <li>Proper document structure, <code>&lt;h1&gt;</code> followed by <code>&lt;h2&gt;</code>, <code>&lt;p&gt;</code>, etc</li> <li>Ensure main content appears near the top of a page,</li> <li>Ensure page conforms to W3C accessibility standards,</li> <li>User friendly URL's,</li> <li>Clean separation of data, styles, client side scripting,</li> <li>Site Map,</li> <li>Meta data.</li> </ul> <p>This will not only provide you with an SEO site but also and accessible and compatible site.</p> <p>It is important to remember that SEO is not just about coding but also content. In these cases it's best to leave this to SEO specialist and content writer.</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/312458#312458 4 Answer by allesklar for Is SEO knowledge important for web developers? allesklar 2008-11-23T12:30:15Z 2008-11-23T12:30:15Z <p>I think there should definitely a space for SEO at StackOverflow.</p> <p>Proper web programming practice should take into account White Hat SEO understanding at every stage of development.</p> <p>In order to do this the information has to be propagated and since there are few SEO knowledge sources out there geared toward the programmer SO seems very fitting.</p> <p>Unfortunately the <strong>'programming related' police</strong> can be quite intimidating to many would be questioners. While there is a need for proper moderation there is also a danger for over policing and not allowing coders to see the bigger picture of development.</p> <p>I for one wish that the SEO tag will get lots of action.</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/340936#340936 3 Answer by CJM for Is SEO knowledge important for web developers? CJM 2008-12-04T15:15:56Z 2008-12-04T15:15:56Z <p>I'd probably disagree with some people's scope of SEO. To me, SEO is the process of optimizing a website (code, architecture, content, etc) to maximise the 'status' of the website in common SEs and maximising the chances of the website being listed against a relevant search. Not that it really matters, but I wouldn't consider link farms and blog spamming as SEO any more than I would adwords or other PPC advertising.</p> <p>And like previous posters, I do think it is an essential part of good web design; SEO should be one of the first considerations when preparing content for your site. It's a lot easier to put it in at the start, rather than retrofit.</p> <p>The irony about SEO is that the most effective techniques are also the easiest; SEO is as more about not putting barriers in the way of your site being properly indexed by SEs, than it is about clever 'tricks' to improve your pagerank. So well-structured, pertinent content that is appropriately and semantically marked up, with appropriate use of headings, links &amp; titles is the bulk of what is needed.</p> <p>I suppose I consider it a shame that have an SEO tag on SO; surely it should simply be a part of 'best-practice'?</p> http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/1661232#1661232 1 Answer by H4mm3rHEad for Is SEO knowledge important for web developers? H4mm3rHEad 2009-11-02T13:09:24Z 2009-11-02T13:09:24Z <p>I have been developing web sites without much thought on SEO. I went with some colleagues to a "guru" to learn some more - thought that the meeting was more for the marketing people (you know writing stuff on the page the right way). I was wrong! I started doing some small adjustments such as <a href="http://www.vikingworks.dk/post/Optimizing-SEO-on-your-page-move-ViewState-to-bottom-of-file.aspx" rel="nofollow">putting the viewstate to the bottom</a>, and giving a bit more thought into which controls and stuff i use on my page (a post on that at the same link as above). It quickly started to improve, our rankings improved and we got more traffic (much more traffic after i was done with all pages)</p>