根据文件扩展名进行 301 重定向到新扩展名
我当前的 URI 是 http://example.com/blog/clients/clientname/?file=media.flv
。
我需要对 301 的确切 URI 结构的所有命中都采用相同的结构,但将文件扩展名更改为 MP4
。
我需要设置哪些 htaccess 规则?
My current URI is http://example.com/blog/clients/clientname/?file=media.flv
.
I need all hits to that exact URI structure to 301 to the same structure but change the file extension to MP4
.
What are the htaccess rules I need to setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.htaccess 中的以下代码应该适合您:
请记住,您无法匹配 RewriteRule 中的 QUERY_STRING。
NC
标志用于忽略大小写比较,如果不需要,可以将其删除。Following code in .htaccess should work for you:
Remember you cannot match QUERY_STRING in RewriteRule.
NC
flag is for ignore case comparison, you can remove it if you don't need it.