根据部分文件夹名称重定向 htaccess

发布于 2024-08-14 22:18:03 字数 200 浏览 2 评论 0原文

我有一组过时的文件夹,我想将其移至一个容器文件夹中。那是

20011104 20011008

现在将

存档/20011104 archive/20011104

有什么方法可以将 htaccess 重定向到几行中,而不是每行一个重定向。有数百个。是否可以使用 200* 这样的通配符,以便将所有此类请求重定向到存档文件夹中?

I have a set of dated folders I want to move into one container folder. That is

20011104
20011008

will now be in

archive/20011104
archive/20011104

is there any way to htaccess redirect these in a few lines, rather than one redirect for each. There are hundreds. Is it possible to do a wildcard like 200* such that all such requests get redirected into the archive folder?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七月上 2024-08-21 22:18:03

是的,既然您知道它将以 200 开头,并且长度为 8 位数字,您应该能够与此匹配:

RewriteRule    (200\d{5})$              /archive/$1 [L,QSA]

编辑:我假设您正在使用 mod_rewrite

Yes, since you know it will start with 200, and will be 8 digits long, you should be able to match with this:

RewriteRule    (200\d{5})$              /archive/$1 [L,QSA]

Edit: I'm assuming you're using mod_rewrite

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文