在我的网站中,有三到四种类型的 URL(每种可以有不同的参数来表示不同的页面)。它们就像http://foo.com/users/username
, http://foo.com/questions/question_text
,http://foo.com/new_question
等。
我mod_rewrite
用来重写来自客户端的 URL,即http://foo.com/users/username
变成http://foo.com/users?username=username
,然后这个请求转到http://foo.com/users
,剩下的就交给它了。
现在我想要这样,除了这 3-4 个预定义模板,如果有任何其他请求,比如http://foo.com/abracadabra
,用户应该被重定向到主页http://foo.com/
。有没有这样的指令可以实现这个包罗万象的重定向?