我想重定向以下网址
http://www.example.com/friends/view.php?l=ka&id=21903
进入此页面
http://www.example.com/hello.html
如何使用htaccess执行此操作?
答案 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]