ScriptAlias /cgi-bin/ "D:/DemoProject/apache/www/" <Directory "D:/DemoProject/apache/www"> AllowOverride None Options +ExecCGI # Order allow,deny # Allow from all Require all granted </Directory> AddHandler cgi-script .cgi .pl .py 脚本文件是使用 utf-8 格式的,当出现中文乱码时,我试着把 ...
Python3.x CGI 中文乱码解决: import codecs, sys sys.stdout = codecs.getwriter('utf8')(sys.stdout.buffer)
告诉服务器结束头部print('')print('')print('')print('HelloCGI Program!')print('')print('')print('Hello Word! CGI PROGRAM为什么有乱码')print('')print('') 结果,网页中文和标题中文都会出现乱码 解决方法: 注释掉 print(''),就好了 1#!G:/python3.6/python...
配置很简单, 网上大把的文章. 但是配置好了输出中文直接引发异常. google了一阵子, 找到了解决方案. 参数要通过环境变量来取得. 代码如下: