我想知道如何在.html文件扩展名中运行一个简单的 PHP代码? 您不能在以.html结尾的html页面中运行PHP.除非该页面实际上是PHP,并且扩展名已从.hp更改为.hp,从.php更改为.html 你的意思是:
你的意思是:
index.html <html> ... <?php echo "Hello world";?> //This is impossible index.php //The file extension can be changed using htaccess, ex: its type stays php but will be visible to visitors as index.html <?php echo "Hello world";?>