根据部分文件夹名称重定向 htaccess
我有一组过时的文件夹,我想将其移至一个容器文件夹中。那是
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,既然您知道它将以 200 开头,并且长度为 8 位数字,您应该能够与此匹配:
编辑:我假设您正在使用 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:
Edit: I'm assuming you're using mod_rewrite