lighttpd更改根文件夹和别名不起作用

时间:2017-10-10 15:03:59

标签: lighttpd

以下是我的lighttpd.conf文件 我更改了根文件夹,并且我声明了别名,两者都不起作用。 / localhost /仍然是“/ var / www / html”

我还为C代码添加了重定向 “.c”重定向工作正常。

    var items = from item in table
                group item by new { item.AlphabeticCode, item.Currency } into g
                select new { Value = g.Key.AlphabeticCode, Text = g.Key.AlphabeticCode + " - " + g.Key.Currency }; 
     //Fluent or inline 
     table.
           GroupBy(i => new { i.AlphabeticCode, i.Currency }).
           Select(g => new { Value = g.Key.AlphabeticCode, Text = g.Key.AlphabeticCode + " - " + g.Key.Currency });

0 个答案:

没有答案