更改默认网址php

时间:2011-01-13 22:21:05

标签: php httpd.conf

如何更改默认网址。例如www.example.com/index.php - > www.example.com

现在我想将其设置为www.example.com/test.php。我应该在php.ini中进行更改吗?

4 个答案:

答案 0 :(得分:3)

假设您使用的是apache,可以通过DirectoryIndex指令执行此操作。

Check out the docs

答案 1 :(得分:1)

DirectoryIndex test.php

在.htaccess或httpd.conf

答案 2 :(得分:1)

您可以将htaccess DirectoryIndex设置为包含test.php:

DirectoryIndex test.php index.php index.html

您还可以从index.php设置重定向:

header('Location: test.php'); //Must be before any content is sent out

重定向也可以从htaccess开始:

Redirect 301 index.php test.php

但是,最简单的方法是将test.php文件重命名为index.php。为什么不这样做呢? :P

答案 3 :(得分:0)

您必须使用DirectoryIndex指令在Apache的配置中更改此内容。

e.g。 (在正确的VirtualHost部分):

DirectoryIndex test.php 

虽然我不明白为什么人们会想要这样做......