Lighttpd结束斜杠网址问题

时间:2013-10-15 22:50:49

标签: regex mod-rewrite rewrite lighttpd

这是我在conf

上的重写
url.rewrite-once = (
    "^/([^/\.]+)/?$" => "/post.php?p=$1"
)

我需要http://nullfix.com/digisales/http://nullfix.com/digisales才能在有或没有斜线的情况下工作吗?

我做错了什么我对正则表达式的东西不好......请帮忙!

1 个答案:

答案 0 :(得分:0)

从正则表达式的开头删除插入符^

"/([^/\.]+)/?$" => "/post.php?p=$1"