如何重写文件扩展名,所以当文件有扩展名html时,Apache认为是php扩展名?
我需要它,因为我必须安装一些PHP应用程序,其中包含带有PHP代码的HTML文件......
尝试使用.htaccess:
RewriteEngine On
RewriteBase /
RewriteRule ^(.*).html$ $1.php [R=301]
......但没有运气。
提前谢谢!
答案 0 :(得分:4)
试试这个:
AddType application/x-httpd-php .htm .html
你的.htaccess 中的