我正在尝试从网址中删除一些目录和数字。
我可以删除DIR,但不能删除号码。
现有网址:domain.com/enews/item/1765-septic-shock-nothing-is-black-and-white
新网址domain.com/septic-shock-nothing-is-black-and-white
这是我的尝试,但不是删除号码:
val output : Either[String, Foo] = client.fetch(request) {
case Successful(resp) => resp.as[Foo].map(Right(_))
case resp => resp.as[String].map(Left(_))
}
答案 0 :(得分:1)
想出来。你需要使用它:
RewriteRule ^enews/item/[0-9]+-(.*)$ /$1 [L,R=301]