|
所需模块:
server.modules = (
"mod_fastcgi",
"mod_access",
"mod_alias",
"mod_accesslog",
"mod_compress",
"mod_rewrite",
"mod_redirect",
"mod_evhost",
)
范例1:
$HTTP["host"] == “www.youling.biz” {
server.name = “youling.biz”
server.document-root = “/home/youling/webroot”
server.errorlog = “/home/youling/webroot/error.log”
accesslog.filename = “/home/youling/webroot/access.log”
}
这是在开启evhost模块后,在同一服务器实现多域名对应各自的目录,范例已经很清楚了,这里也就不再解释。
范例2:
$HTTP["host"] =~ “^youling\.biz$” {
url.redirect = ( “^/(.*)” => “http://www.youling.biz/$1″ )
}
这几行代码添加在lighttpd.conf是为了不因www.domains.com以及domains.com ... ins.com的目的。
范例3:
$HTTP["host"] =~ “youling\.biz” {
evhost.path-pattern = “/home/youling/webroot/%3″
}
有人很好奇博客网站为每人分配1个二级域名是怎么实现的,添加这几行代码后,即可实现访问example.domains.com=domains.com/example。
注:以上修改皆在/etc/lighttpd/lighttpd.conf中完成。
今天先写到这里。 |
|