-1

Godaddy 上的 Windows 主机。

我有 4 页,主页是Index.html,其余 3 页是.php页面。

当我上传Index.php文件时,该站点无法正常工作,但是当我将Index.php文件替换为 时Index.html,该站点可以正常运行。

文件有什么问题Index.php

4

1 回答 1

-1

php 是扩展开头

<?php

只需将新文件作为 sample.php 并输入此代码作为示例而不是测试

<!DOCTYPE html>
<html>
<body>

<h1>My first PHP page</h1>

<?php
echo "Hello World!";
?>

</body>
</html>

并检查它是否正常工作,所以你的页面做错了

于 2017-05-21T21:00:39.783 回答