Re: [users@httpd] Redirect BookMark Link

2019-02-16 Thread Ajay B
Thanks a lot for reply This helped a lot On Fri 15 Feb, 2019, 11:56 PM Daniel Ferradal Only rewritecond can check query string so, you need a rewritecond to > check for the specific query string you want to check, something like > this would literally do what you ask. > > RewriteCond %{QUERY_STR

Re: [users@httpd] Redirect BookMark Link

2019-02-15 Thread Daniel Ferradal
Only rewritecond can check query string so, you need a rewritecond to check for the specific query string you want to check, something like this would literally do what you ask. RewriteCond %{QUERY_STRING} ^orgId=1 RewriteRule ^/page$ /page?orgId=2 [R,L] El jue., 14 feb. 2019 a las 17:16, Ajay B

[users@httpd] Redirect BookMark Link

2019-02-14 Thread Ajay B
Hi All We have an urgent requirement coming in to redirect the users Bookmarked link Example The users has currently stored https://example.com/page?orgId=1 We need to redirect it to https://example.com/page?orgId=2 Any help here would be appreciated Thanks Ajay