1 / 10

IS1500: Introduction to Web Development

IS1500: Introduction to Web Development. Search Engine Optimization Martin Schedlbauer, Ph.D. m.schedlbauer@neu.edu With content from David Hurd . Contents. In-page Optimizations. Out-of-page Optimizations. Robots.txt Sitemap File Names Folder Structure URL Rewriting. <head>

viho
Download Presentation

IS1500: Introduction to Web Development

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. IS1500: Introduction to Web Development Search Engine Optimization Martin Schedlbauer, Ph.D. m.schedlbauer@neu.edu With content from David Hurd.

  2. Contents In-page Optimizations Out-of-page Optimizations • Robots.txt • Sitemap • File Names • Folder Structure • URL Rewriting <head> … </head> • Title • Keywords • Meta Description <body> … </body> • Headings • Links • Image Alts Search Engine Optimization – Devin Hurd

  3. <head> • Description of page including important keywords <title> <meta name=“keywords” content=“…”> <meta name=“description” content=“…”> • List of keywords relevant to your page • A short paragraph describing the page Search Engine Optimization – Devin Hurd

  4. <head> <title> Northeastern University Daily News - Home Page </title> <title> <meta name=“keywords” content=“…”> <meta name=“description” content=“…”> <metaname=“keywords” content=“Northeastern University, Northeastern, Huskies, News, Updates, Home”> <metaname=“description” content=“Home page for Northeastern University’s Daily News Updates. We provide around the clock updates on NEU related topics.”> Search Engine Optimization – Devin Hurd

  5. <body> • Section titles within the webpage • Highlights important words/topics Headings <h1>, <h2>, … <a href=“…” rel=“nofollow”> … </a> <imgsrc=“…” alt=“…” /> • A link to another page on your site, or to an outside site • Text explaining the image Search Engine Optimization – Devin Hurd

  6. <body> <h1>Northeastern University News</h1> … <h2>Strange man found in Columbus lot, reported to NUPD</h2> Headings <h1>, <h2>, … <a href=“…” rel=“nofollow”> … </a> <imgsrc=“…” alt=“…” /> Check out <ahref=“dining.html”>NU Dining’s latest achievements</a>! <imgsrc=“logo.png” alt=“Northeastern University News Logo” /> Search Engine Optimization – Devin Hurd

  7. Out-of-page pt.1 Robots.txt - Tells search engine robots how to crawl & index pages User-Agent: * Disallow: Disallow: /css User-Agent: Googlebot Disallow: /images Sitemap: http://www.neu-news.com/sitemap.xml Sitemap.xml - A list of a website’s pages accessible to robots and users <?xmlversion="1.0"encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> <url> <loc>http://www.new-news.com/index.html</loc> <lastmod>2013-02-25T23:33:39+00:00</lastmod> <changefreq>hourly</changefreq> </url> </urlset> Search Engine Optimization – Devin Hurd

  8. Out-of-page pt.2 File Names and Folder Structure root root imaguz images stuff css/js index1203.html i123i52.html about_us.html our_mission.html a about news5481.html n.html tuition_increase.html baseball_wins.html n news Search Engine Optimization – Devin Hurd

  9. Out-of-page pt.3 URL Rewriting Article: “Northeastern Wins Beanpot!” http://www.neu-news.com/news.php?id=5&date=15022015&tag=beanpot http://www.neu-news.com/news/2015/02/15/beanpot Search Engine Optimization – Devin Hurd

  10. Summary, Review, & Questions… Dynamic Websites

More Related