gpt4 book ai didi

php - htaccess YouTube的URL重定向

转载 作者:行者123 更新时间:2023-12-03 05:56:55 25 4
gpt4 key购买 nike

我正在尝试将一个网址重定向到另一个。
也许这是一个常见的问题,或者以前曾被问过很多次,但我很困惑,找不到。请看一下这个例子

引用网址为

example.com/folder1/watch=?id

我想使用.htaccess将其重定向到另一个域(htaccess文件应位于 folder1 中。现在,.htaccess应该选择字符串 “watch =?id” 并放在第二个域之后,如下所示。
example2.com/folder1/watch=?id (watch id should be that which was in refering url.)

基本概念,我想通过.htaccess URL重定向选项下载youtube视频。

最佳答案

试试这个。在引荐网址上,参数名称应为“v”而不是“id”,以便在youtube下播放适当的视频。

该规则将重定向到“youtube.com/watch”URL,并附加所有引用请求参数。

    Options +FollowSymLinks
RewriteEngine On
# if requested file exists use it
RewriteCond %{REQUEST_FILENAME} !-f
# if requested directory exists use it
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise redirect to "https://www.youtube.com/watch"
# appended with the params of the requested URI
RewriteRule ^.*\/watch\?*$ https://www.youtube.com/watch [L,QSA]
RewriteRule ^watch\?*$ https://www.youtube.com/watch [L,QSA]

关于php - htaccess YouTube的URL重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36237745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com