如何重定向以下模式的网址?

时间:2014-07-02 13:46:47

标签: .htaccess

我有一个如下所示的网址模式。我需要重定向到基本网址。

来自http://www.example.com/https://www.othersite.com/watch?v=465sdfsf

http://www.example.com

我尝试了301重定向但它失败了。

所以请指导我。

1 个答案:

答案 0 :(得分:0)

您可以在DocumentRoot/.htaccess

中使用此规则
RewriteEngine On

RewriteCond %{THE_REQUEST} /www\.othersite\.com/watch\?v=465sdfsf [NC]
RewriteRule ^ /? [L,R=301]