Yii v2 snippet guide

Comparing #164 with #165

Revision #165 was created by rackycz rackycz on Oct 18, 2019, 9:53:39 AM.

seo

Content

[...]
To test your SEO score you can use special webs. For example [seotesteronline](https://suite.seotesteronline.com/seo-checker), but only once per day.
It will show some statistics and recommend enhancements so that your web is nicely shown on FB and Twitter or found by Google.

Important are for example OG meta tags or [TWITTER meta tags](https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/summary). They are basicly the same. Read more [here](https://css-tricks.com/essential-meta-tags-social-media/). You can test them at [iframely.com](http://debug.iframely.com).

Basic tags are following and you should place them to head:
 
- Note that Twitter is using attribute "name" instead of attribute "property" which is defined in OG ... 
 
- btw OG was introduced by Facebook. Twitter can process it as well, but SEO optimizers will report an error when Twitter's tags are missing.


```html
[...]
<meta name="description" content="blah blah">
<meta property="og:type" content="website">
<meta
propertyname="twitter:title" content="blah blah"> <meta propertyname="twitter:description" content="blah blah">
<meta name="twitter:image" content="http://something.jpg">
```

Do not forget about file robots.txt and sitemap.xml:
[...]