Browser Tutorial SEO - Search Engine Optimization - (en)



Similar documents
EXT: SEO dynamic tag

Search Engine Optimization for the title tag, the canonical tag and the meta tags author, description and keywords.

Slick - responsive Carousel Slider

Browser Tutorial Development (en) Browser - TYPO3 without PHP

EXT:Booking Extension

EXT: Shop System Manager Module

Administrator s Guide

EXT: News Event. Extension Key: mbl_newsevent Copyright , Mathias Bolt Lesniak,

The Ultimate Guide to Magento SEO Part 1: Basic website setup

EXT: TEQneers SEO Enhancements

Direct Mail Tutorial

LDAP / SSO Authentication

changes in tt_news 3.0.0

SEO Ultimate - 1. How to Install, Configure, and use SEO Ultimate. 1.) Plugins > Add New. Login to Wordpress and click on Plugins > Add New

SEO AND META TAGS. DOCUMENT Here is a guide to SEO on your Webdadi website. WEBDADI Updated Nov 2015

Administrator's Guide

Neos SEO Addon Documentation

Improved Navigation Magento Extension User Guide

Simple Search Engine Optimization Tips

OutSystems Platform 9.0 SEO Friendly URLs

CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR

TYPO3 Best Practice Workshop

Direct Mail Tutorial

ultimo theme Update Guide Copyright Infortis All rights reserved

Online sales management software Quick store setup. v 1.1.3

SEO Content Writing Guide

Web Developer Tutorial: SEO with Drupal: Page Title Module

ultimo theme Update Guide Copyright Infortis All rights reserved

User Documentation SEO EXPERT

Website Search Engine Optimization (SEO) Evaluation XXXXXXX

This installation guide will help you install your chosen IceTheme Template with the Cloner Installer package.

SEO Suite V8 User Guide Manual

Practical Exercises. Professional Diploma in Digital Marketing SEO

webtree designs Gayle Pyfrom web site design and development Lakewood, CO

I. Delivery Flash CMS template package II. Flash CMS template installation III. Control Panel setup... 5

Direct Mail Tutorial for Editors

WordPress Security Scan Configuration

About ZPanel. About the framework. The purpose of this guide. Page 1. Author: Bobby Allen Version: 1.1

darlingharbour.com Content Management System Tenant User Guide

Search Engine Optimisation (SEO) Guide

EXT: Crawler. This document is published under the Open Content License available from

Configuring the JEvents Component

nopcommerce User Guide

EXT: tollwerk Google Analytics

SEO Deployment Best Practices

Super Resellers // Getting Started Guide. Getting Started Guide. Super Resellers. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Caddy responsive Shopping Cart

Agenda. 1. ZAPms Konzept. 2. Benutzer-Kontroller. 3. Laout-Aufbau. 4. Template-Aufbau. 6. Konfiguration. 7. Module.

How To Create A Website In Drupal 2.3.3

1. Installation Instructions

ONLINE BUSINESS PLATFORM. SEO Checklist: 7 Essential Checks Before Launching Your Sitefinity Website

SEO Checker User manual

SEO Overview. Introduction

SELF SERVICE RESET PASSWORD MANAGEMENT CREATING CUSTOM REPORTS GUIDE

PROPOSED SOLUTIONS FOR THE DESIGN & DEVELOPMENT OF COUPON WEBSITE

Business Application Development Platform

WebSphere Commerce V7 Feature Pack 3

The Almighty SEO Guide For Small Businesses

Learning Remote Control Framework ADD-ON for LabVIEW


To familiarise University Web administration staff with the capabilities of the University CMS and also introduce concepts of Web marketing.

Expresso Quick Install

Search Engine Optimization with Jahia

2011 ithemes Media LLC. All rights reserved in all media. May be shared with copyright and credit left intact

Free SEO. 1. Meta Tags: they must be enticing for both search engines and visitors?



Web Development News, Tips and Tutorials

Joomla! template Blendvision v 1.0 Customization Manual

Missing cat website HTML&CSS. The Mission:

How To Use Google Analytics On Wordpress On A Pc Or Mac Or Mac (For Free) On A Blog Or Pc Or Ipad (For A Free)

Search Engines. Planning & Design 1

ProjectPier v Getting Started Guide

1. SEO INFORMATION...2

MARKETING KUNG FU SEO: Key Things to Expand Your Digital Footprint. A Practical Checklist

TYPO3 Security Cookbook

Livezilla How to Install on Shared Hosting By: Jon Manning

Ecommerce Website Testing Checklist

How To Create A Simple Module in Magento 2.0. A publication of

Transcription:

Browser Tutorial SEO - Search Engine Optimization - (en) Browser - TYPO3 without PHP SEO - Search Engine Optimization - for the Browser - TYPO3 without PHP. This is the tutorial for SEO only. Version: 4.6.2-2013-09-19 Extension Key: browser_tut_seo_en Language: en Keywords: foradmins, forintegrators, fordevelopers, browser, typo3, without, php, seo, search engine optimization Copyright 2013, Dirk Wildt, Die Netzmacher, <http://wildt.at.die-netzmacher.de> This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml The content of this document is related to TYPO3 - a GNU/GPL CMS/Framework available from www.typo3.org 1

Table of Contents Browser Tutorial SEO - Search Engine Optimization - (en)... 1 Introduction... 3 What does the Tutorial do?... 3 SEO from version 4.6... 4 SEO Dynamic Tag 2 is recommended... 4 SEO upto version 4.5... 5 Deprecated... 5 Non supported from version 5.x... 5 Page object, SEO and _LOCAL_LANG... 5 Change Log... 8 Illustration Index... 9 2

Introduction What does the Tutorial do? This is a tutorial for the extension Browser (extkey: browser). It is only a step-by-step introduction for optimizing your website for search engines (SEO) If you are interested in other issues, please note the section "Further Informations" below. 3

SEO from version 4.6 From version 4.6 the search engine optimization is delegated to the extension SEO Dynamic Tag 2. The cause is: SEO Dynamic Tag 2 is easier to configure. SEO Dynamic Tag 2 supports the canonical tag. The Browser SEO modul -based on SEO Dynamic Tag 1 will still exist upto the Browser version 5.x SEO Dynamic Tag 2 is recommended See SEO Dynamic Tag 2 http://typo3.org/extensions/repository/view/seo_dynamic_tag 4

SEO upto version 4.5 The Browser has an integrated modul for search engine optimization (SEO). The modul stores data in registers, you can configure this data and use it whiole runtime. Deprecated From version 4.6 the search engine optimization is delegated to the extension SEO Dynamic Tag 2. The cause is: SEO Dynamic Tag 2 is easier to configure. SEO Dynamic Tag 2 supports the canonical tag. Non supported from version 5.x The Browser SEO modul will still exist upto the Browser version 5.x Page object, SEO and _LOCAL_LANG TypoScript You find the TypoScript code in res/tutorial_07/step_01.txt 1. page { 2. config { 3. nopagetitle = 2 4. } 5. headerdata.20 = TEXT 6. headerdata.20 { 7. data = register:browser_htmltitletag 8. ifempty.field = title 9. wrap = <title> </title> 10. } 11. meta { 12. description { 13. field > 14. data = register:browser_description 15. } 16. keywords { 17. field > 18. data = register:browser_keywords 19. } 20. } 21. } Line 3: We don't want any page title. From line 5 to 10: We add the HTML title tag. The register will be filled in the TypoScript below. From line 11 to 20: We add the meta-tags description and keywords. The registers will be filled in the TypoScript below. 22. plugin.tx_browser_pi1 { 23. displaylist.seo.htmlhead { 24. title = 1 25. meta { 26. description = 1 27. keywords = 1 28. } 29. } 30. displaysingle.seo.htmlhead { 31. title = 1 32. meta { 33. description = 1 34. keywords = 1 35. } 36. } 37. views { 38. list { 39. 1 { 40. select = tt_news.title, tt_news_cat.title 5

41. } 42. } 43. single { 44. 1 { 45. select = tt_news.title, tt_news.short, tt_news.bodytext 46. } 47. } 48. } 49. _LOCAL_LANG { 50. default { 51. list_mode_1_titletag = News with categories 52. list_mode_1_keywords = news, category, categories 53. list_mode_1_summary = List with news and its category 54. single_mode_1_titletag = ###TT_NEWS.TITLE###: ###TT_NEWS.SHORT### with image 55. single_mode_1_keywords = News, ###TT_NEWS.TITLE###, ###TT_NEWS.SHORT###, images 56. single_mode_1_summary = ###TT_NEWS.TITLE###: ###TT_NEWS.SHORT### \ ###TT_NEWS.BODYTEXT### 57. } 58. } 59. } There will be the following substitution in the HTML code (see screenshots on page 7): Example list mode: <html> <head> <title>news with categories</title> <meta name="keywords" content="news, category, categories" /> <meta name="description" content="list with news and its category" /> Example single mode: <html> <head> <title>ab heute die Netzmacher: think visually! war gestern with image</title> <meta name="keywords" content="news,ab heute die Netzmacher,think vis..." /> <meta name="description" content="ab heute die Netzmacher: think visu..." /> stdwrap Property The SEO fields have the stdwrap property. Example: plugin.tx_browser_pi1 { displaylist.seo.htmlhead { title = 1 title { notrimwrap = Prefix: Postfix } } } 6

Result Illustration 1: List view with the configured meta tag title. Illustration 2: Single view with the configured meta tag title. Illustration 3: HTML code of the list view. The code has the configured meta tags title, keywords and description: Illustration 4: HTML code of the single view. The code has the configured meta tags title, keywords and description: 7

Change Log 4.6.2 Initial Release * #i0001: Publishing the manual 8

Illustration Index Illustration 1: List view with the configured meta tag title...7 Illustration 2: Single view with the configured meta tag title...7 Illustration 3: HTML code of the list view. The code has the configured meta tags title, keywords and description:...7 Illustration 4: HTML code of the single view. The code has the configured meta tags title, keywords and description:...7 9