I need to rewrite:
laptop.example.comtowww.example.com/?c=1.phone.example.comtowww.example.com/?c=2
It doesn't have to be dynamic or anything. I just want a handful of hardcoded rewrites.
Currently I am trying this, and it is redirecting, not rewriting:
RewriteCond %{HTTP_HOST} ^laptop.example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/?c=1$1 [QSA,L]
mod rewrite syntax is so baffling to me, I cannot make head or tail out of it.
I do not want to do a 301 redirect. I want to do URL rewrite so that user sees the original subdomain URL without the parameters, but internally it is sent as the latter ones.
I already have several rewrites in my .htaccess file; they should be applied after this rewrite.
I have looked at about a dozen similar questions in SO. But I couldn't convert the answers to my specific needs; I couldn't find out what I was missing or what I was doing wrong. That is why I am asking it again specifically for my scenario.
Working Code:
RewriteCond %{HTTP_HOST} ^laptop.example.com$ [NC]
RewriteRule ^/?$ ?c=1$1 [QSA,L]
Hopefully I won't encounter a situation where other rewrites below this mess it up again!