Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 lighttpd 中的 url 添加一个斜杠 (/)。我测试了这个:
url.redirect = ( "^(.*)$" => "$1/")
但这在最后增加了很多斜线。任何帮助将不胜感激。
刚刚怎么样
"^(.*[^/])$" => "$1/"
?
是的,正如安萨里所说,你需要这样的东西。
(目前,我正在做同样的事情......)
$SERVER["socket"] == "xxx.xxx.xxx.xxx:xx" { url.redirect = ("^(.*[^/])$" => "$1/") }
这会将 / 放在 URL 的末尾。