如何使用htaccess重定向此URL?

时间:2017-02-09 03:05:51

标签: .htaccess

我想重定向以下网址

http://www.example.com/friends/view.php?l=ka&id=21903

进入此页面

http://www.example.com/hello.html

如何使用htaccess执行此操作?

1 个答案:

答案 0 :(得分:1)

您可以在htaccess中使用以下规则:

RewriteEngine on

RewriteCond %{THE_REQUEST} \s/friends/view\.php\?l=ka&id=21903\s [NC]
RewriteRule ^ http://example.com/hello.html? [L,R]