Hi,
Quote:
means it's not redirecting with identifier "redirectUrl=".
How to rewrite to that as well ??
|
What you mean by that? You want your URL rewritten to:
https://pqrs.com/xx/xx/xxxxxxxxxx/xx...xxxxxxxxx/xxxx
If that's the case, you can try the following:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^pqrs.com$
RewriteRule (.*) https://pqrs.com/$1 [R]
RewriteCond %{HTTP_HOST} ^www.semltd.com.cy$
RewriteRule ^xx/(.*)abcd.com(.*)$ /xx/$1/pqrs.com$2 [R,L]
Regards