根据文件扩展名进行 301 重定向到新扩展名

发布于 2024-11-06 03:48:34 字数 189 浏览 0 评论 0原文

我当前的 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 技术交流群。

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

发布评论

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

评论(1

秋千易 2024-11-13 03:48:34

.htaccess 中的以下代码应该适合您:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} ^(file=.*)\.flv [NC]
RewriteRule . %{REQUEST_URI}?%1.MP4 [L,R=301]

请记住,您无法匹配 RewriteRule 中的 QUERY_STRING。

NC 标志用于忽略大小写比较,如果不需要,可以将其删除。

Following code in .htaccess should work for you:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} ^(file=.*)\.flv [NC]
RewriteRule . %{REQUEST_URI}?%1.MP4 [L,R=301]

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.

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