lighttpd 将某些链接重定向到某些 URL

lighttpd 将某些链接重定向到某些 URL

有人能告诉我这个重定向为什么不起作用吗?

$HTTP["host"] =~ ".*\\.mydomain\\.com" { 
    url.redirect = ( 
        "/index\.php\?pg=mysql" => "http://mydomain.com/lean-webhosting/mysql-clustering/",
        "/index\.php\?pg=cloud_uitleg" => "http://mydomain.com/lean-webhosting/cloud-uitleg/" 
    )    
}

有人知道吗?谢谢!

答案1

您可能需要替换".*\\.mydomain\\.com"".*\.mydomain\.com"重新启动lighttpd。如果这没有帮助:请解释如何重定向不适合您。

答案2

$HTTP["host"] =~ ".*\.muntinternet\.nl" { 
    url.redirect = ( 
        "/\?pg=mysql" => "http://muntinternet.nl/lean-webhosting/mysql-clustering/",
        "/\?pg=cloud_uitleg" => "http://muntinternet.nl/lean-webhosting/cloud-uitleg/" 
    )    
}

我需要排除/index\.php

谢谢!

相关内容