如何编辑.htaccess文件以使客户端运行php脚本,但是在png / jpg扩展名中。秀... 用户将访问网址
http://example.com/script.png他会看到“测试”(php脚本将返回此值),而不是图像。 这就是我已经做过的事情: .htaccess文件:
AddType application/x-httpd-php .png
script.png文件:
<?php
header("Content-type: image/png");
echo 'test';
?>
这段代码有什么问题?为什么它不起作用?浏览器尝试下载图像:/
答案 0 :(得分:2)
将以下行添加到.htaccess
文件
AddHandler application/x-httpd-php .png
这告诉服务器将所有以.png
结尾的文件处理为.php
。