Re: problem with validation results

> On Oct 24, 2017, at 6:04 PM, support@muralsandfauxpainting.com wrote:
> 
> But I have saved my file using Smultron to UTF-8. So how come your test says I am using windows-1252?
> 
> Can you explain, please. I want to validate my pages.

The problem is that your web server sends an HTTP header that overrides the page's meta-charset:

Content-Type: text/html; charset=ISO-8859-1

You'll probably need to adjust your server configuration to not send charset info for HTML files. You could probably use:

RemoveCharset .html

Full Apache doc at:

https://httpd.apache.org/docs/2.4/mod/mod_mime.html

Cheers - Chuck

Received on Wednesday, 25 October 2017 00:49:43 UTC