htaccess - 重定向 /something/* 到 /something

htaccess - Redirect /something/* to /something

示例:

/something/foo --> show /something
/something/foo/bar --> show /something
/something/foo/bar/baz --> show /something

我会用 JS 解析 URL。

此外,在我的机器中路由是 localhost/websites/MyWebsite/something 所以理想情况下它也应该适用于我的机器(或者如果不可能,我需要 .htaccess 一个用于服务器,一个用于我的机器)

嗯,没有人回答,所以经过大量测试后这对我有用:

RewriteRule ^something/(.+)$ something.php

在我的例子中,它是一个 php 文件