使用 .htaccess 使所有.html页面作为.php文件运行?

2022-08-30 09:57:41

我需要将所有.html文件作为.php文件运行,并且在明天的演示之前我没有时间更改所有链接。有没有办法用我的Apache服务器“破解”它?


答案 1

在网站的根目录下创建一个 .htaccess 文件,然后添加以下行:

[Apache2 @ Ubuntu/Debian:使用此指令]

AddType application/x-httpd-php .html .htm

或者,从下面的评论中:

AddType application/x-httpd-php5 .html .htm

如果你正在运行PHP作为CGI(可能不是这种情况),你应该写:

AddHandler application/x-httpd-php .html .htm 

答案 2

在我的 Godaddy 服务器中,以下代码有效

Options +ExecCGI
AddType application/x-httpd-php .php .html
AddHandler x-httpd-php5 .php .html

推荐