我有一个文件“index.html”。还有一个代码
<?php echo "Hello world"; ?>
但在浏览器中我可以看到:
<!--<?php echo "Hello world"; ?>-->
我使用的是Microsoft-IIS / 7.5server,因此我无法使用.htaccess文件。
答案 0 :(得分:5)
将文件另存为index.php。 HTML无法读取PHP。
编辑:然后尝试更改主页面。看看这个:
https://www.iis.net/configreference/system.webserver/defaultdocument
答案 1 :(得分:0)
您可以在iis中存储扩展名为.php且用户为rewrite module的文件,以将.html文件链接到您存储的.php文件。 通常用于SEO使用这种方法。
答案 2 :(得分:-2)
实施例
<?php
// This is a single line commment.
$comment = 1;
/* This is a multi line comment
yet another line of comment */
$comment = "many lines";
?>