问题描述
我有一个shtml文件index.shtml,其中我想要包含一个PHP文件,它执行一些编程并返回HTML数据。我试图包含我的PHP文件,但我不知道如何做到这一点,我尝试了以下但没有任何工作,
I have a shtml file index.shtml in which I want to include a PHP file which performs some programing and returns HTML data. I am trying to include my PHP file but I don't know how to do that, I tried following but nothing is working,
以下行只是打印错误, [处理此指令时出错] :
Following line is just printing an error, "[an error occurred while processing this directive] ":
<!--#include file="/SSI/test.php"-->
此行显示一些垃圾字符:
This line is displaying some junk characters:
<!--#include virtual="/SSI/test.php"-->
此行无效,并按.shtml页面显示命令
This line is doing nothing and displaying the command as is in the .shtml page
<?PHP
include("/SSI/test.php");
?>
谢谢
推荐答案
如果除了你提到的关于流量的内容之外没有特别的原因你使用.shtml,你可以在.htaccess文件中更改它的处理:
If there is no particular reason that you are using .shtml aside from what you mentioned regarding traffic, you can change its processing in your .htaccess file:
<Files *.shtml>
ForceType application/x-httpd-php
</Files>
或者您可以特别指定该文件:
Or you can specify that file in particular:
<Files filename.shtml>
ForceType application/x-httpd-php
</Files>
这将告诉服务器解析.shtml,就像它是.php文件一样,因此任何应该处理PHP命令,例如include语句。无需更改文件扩展名。
This will tell the server to parse the .shtml like it was a .php file, and therefore any PHP commands should be processed, such as your include statement. No need to change the file extension.
这篇关于如何在SHTML页面中包含PHP文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!