如何更改默认网址。例如www.example.com/index.php - > www.example.com
现在我想将其设置为www.example.com/test.php。我应该在php.ini中进行更改吗?
答案 0 :(得分:3)
假设您使用的是apache,可以通过DirectoryIndex
指令执行此操作。
答案 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
虽然我不明白为什么人们会想要这样做......