我的主站点脚本使用php4,它可以与AddHandler一起使用。由于默认情况下配置服务器或php5.3我假设在向子目录添加另一个脚本时我所要做的就是使用下面的Addhandler / AddType之一,但它不起作用。当我在将页面作为下载发送到浏览器之前添加3行中的任何一行时,它根本不处理该文件以供显示。对于Addhandler,我的htaccess完全是空白的。这也是在专用服务器上。
AddType application/php5-script php html tpl
AddHandler application/x-httpd-php5 .php .php4 .php3 .phtml .tpl .html
AddHandler application/x-httpd-php53 .php .php4 .php3 .phtml .tpl .html
to explain better..
1. www.site.com is run php4 (script req. it)
2. www.site.com/newscript/ needs php5
3. i put a .htaccess in the www.site.com/newscript/ folder with
Addhandler for php5 but it doesn't work
答案 0 :(得分:1)
你的问题有点困惑,你的意思是你在同一台服务器上运行php 4和5,并希望网站的某些部分运行php4,一些php5?
如果它是新服务器,并且您尝试使用已发布的代码
AddType application/x-httpd-php .php .php4 .php3 .phtml .tpl .html
答案 1 :(得分:0)
服务器需要运行最新的PHP 5.3,您可以使用.htaccess
降级到PHP 4,但如果服务器至少没有运行PHP 5.3,则无法使用.htaccess
执行此操作。知道了吗?