1

我将 Lighttpd 网络服务器与 PHP 结合使用。

我试图弄清楚如何更改默认行为,以便"www.domain.com"加载浏览到xyz.php而不是index.php;两者都在文档根目录中。

我能够向 lighttpd 添加重定向,以便将请求"www.domain.com/index.php"成功重定向到"www.domain.com/xyz.php".

但我不知道怎么"www.domain.com""www.domain.com/xyz.php"

感谢您的时间。

4

3 回答 3

2

更通用的做法是修改 /etc/lighttpd/ 中的 lighttpd.conf,只需将 xyz.php 作为设置index-file.names数组中的第一个:https ://redmine.lighttpd.net/projects/1/ wiki/索引文件名_详细信息

于 2016-08-27T10:09:35.800 回答
1

你有没有尝试过 :

    url.redirect = (
            "^/$" => "http://www.domain.com/xyz.php"
    )
于 2013-03-14T09:02:07.713 回答
0

您可以更改index-file.nameslighttpd.conf 中的设置。

index-file.names = (
    "xyz.php", "index.php", "index.html"
)

在上面的示例中,如果存在,则请求http://www.example.com/将首先服务xyz.php,如果不存在index.php并且两个文件都不存在index.html

于 2016-09-12T09:17:28.097 回答