I have had a web page that had the following code in the head:
<head>
<!--COMIENZO: CABECERA USUARIO-->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!--FIN: CABECERA USUARIO-->
<!--METAINFORMACION DE LA PAGINA-->
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
</head>
But on the server it does not work, could it be Apache's problem? Because I have tried to use the following code:
<head>
<!--COMIENZO: CABECERA USUARIO-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!--FIN: CABECERA USUARIO-->
<!--METAINFORMACION DE LA PAGINA-->
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>