1
我想以下網址如何使用htaccess重定向此URL?
http://www.example.com/friends/view.php?l=ka&id=21903
進入這個頁面
http://www.example.com/hello.html
我怎樣才能做到這一點使用htaccess的重定向?
我想以下網址如何使用htaccess重定向此URL?
http://www.example.com/friends/view.php?l=ka&id=21903
進入這個頁面
http://www.example.com/hello.html
我怎樣才能做到這一點使用htaccess的重定向?
您可以使用htaccess的以下規則:
RewriteEngine on
RewriteCond %{THE_REQUEST} \s/friends/view\.php\?l=ka&id=21903\s [NC]
RewriteRule^http://example.com/hello.html? [L,R]