Hi all,
I have been trying to fine "+" sign in my query string. for example if someone types example.com/test+love then it needs to be redirected to testcond.php
So I wanted to check if query string has plus sign in it or not? if no plus sign then it will not run that file.
i tried
RewriteCond %{QUERY_STRING} ^([+])$
RewriteRule ^([a-zA-Z\+]+)$ testcond.php?keyword=$1 [L]
but it didnt work. I just need to check if plus sign "+" is there in query, if plus sign is there only then testcond.php file should run.
Please help me.
Regards