我正在使用Lighttpd网络服务器与PHP结合使用。
我正在尝试弄清楚如何更改默认行为,以便浏览到"www.domain.com"
将加载xyz.php
而不是index.php;
这两者都在doc根目录中。
我能够向lighttpd添加重定向,以便将"www.domain.com/index.php"
的请求成功重定向到"www.domain.com/xyz.php"
。
但我无法弄明白如何让"www.domain.com"
转到"www.domain.com/xyz.php"
。
感谢您的时间。
答案 0 :(得分:1)
你试过了吗?
url.redirect = (
"^/$" => "http://www.domain.com/xyz.php"
)
答案 1 :(得分:0)
更通用的做法是修改/ etc / lighttpd /中的lighttpd.conf,只需将xyz.php设置为设置 index-file.names 数组的第一个:{{3} }
答案 2 :(得分:0)
您可以更改lighttpd.conf中的index-file.names
设置。
index-file.names = (
"xyz.php", "index.php", "index.html"
)
在上面的示例中,http://www.example.com/
的请求首先提供xyz.php
(如果存在),如果不存在index.php
且两个文件都不存在index.html