所以我开发了一个网站,主页面名为home.php。我还有Godaddy的域名和托管。我想知道的是,我如何告诉我的网站将home.php显示为主页?
我希望当用户访问example.com时,应该显示home.php,而不是example.com/home.php。
感谢。
答案 0 :(得分:3)
只需将home.php
重命名为index.php
答案 1 :(得分:2)
将文件命名为index.php,它将起作用
答案 2 :(得分:1)
您可以选择:
index.php
default.php
header("Location: home.php");
DirectoryIndex home.php
我会选择#1或#2 !
如果您选择执行iFrame,则必须“突破”以启用浏览器中的后退按钮。
如果您选择使用php进行重定向,则会浪费服务器资源。
.htaccess方式:......不知道什么是坏事。
答案 3 :(得分:0)
home.php
重命名为index.php
index.php
<?php header('Location: home.php');?>
但是,我不推荐选项#2,因为它会生成另一个无用的HTTP请求。