Setting iso-8859-1 instead of utf-8 in oscommerce / sts website?

In the oscommerce node, I have the following:

Server response = Content type: text / html; charset = UTF-8

and I want: Content-type: text / html; charset = ISO-8859-1

How and where to install it.


The html looks like this on the page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html dir="LTR" lang="nl"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

      

Changing it to: utf-8 doesn't solve the problem.

0


source to share


2 answers


in the .htaccess file



AddDefaultCharset ISO-8859-1

      

0


source


Note that (especially for a commerce site) you should instead use ISO-8859-15, which includes the Euro sign.



0


source







All Articles