response header VS meta tag

2019-01-18 13:07发布

I can declear some info, like encoding and language, in meta-tag or in response-header.
My question: what the best way (maybe them both), for SEO and old-browsers ?

meta-tag example: <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
(PHP) header example: header('Content-Type: text/html; charset=utf-8');
what's better ?

2条回答
Explosion°爆炸
2楼-- · 2019-01-18 13:46

Meta http-equiv is little more than a joke. When specifying Content-Type with it, only the charset section counts for anything, and then only when the real HTTP headers fail to specify the encoding.

查看更多
迷人小祖宗
3楼-- · 2019-01-18 13:58

Do both. The header takes precedence, but if the HTML page is accessed locally, there are no HTTP-headers, so you want to have <meta charset="..."> as a safety mechanism.

查看更多
登录 后发表回答