HTML文件表现得像PHP(如何重写文件扩展名)

时间:2010-08-20 11:09:00

标签: .htaccess

如何重写文件扩展名,所以当文件有扩展名html时,Apache认为是php扩展名?

我需要它,因为我必须安装一些PHP应用程序,其中包含带有PHP代码的HTML文件......

尝试使用.htaccess:

RewriteEngine On
RewriteBase /
RewriteRule  ^(.*).html$ $1.php [R=301]

......但没有运气。

提前谢谢!

1 个答案:

答案 0 :(得分:4)

试试这个:

AddType application/x-httpd-php .htm .html
你的.htaccess

中的