I'm trying to point subdomain.example.com
to a resource on subdomain2.example.com/?page_id=1
It's a wordpress blog. I'm attempting to give a static page its own subdomain. The point is to basically showcase the existing resource without giving away the URL... So far, I've tried...
RewriteCond %{REQUEST_URI} subdomain.example.com [NC]
RewriteRule ^(.*)$ http://subdomain2.example.com/?page_id=1 [P]
but to no avail.
Currently I have the subdomain.example.com
set up as its own Virtual server with a RedirectPermanent to the resource. Anyone have any insight on how to achieve this? I think i'm getting closer but I'm very new to this. Thanks.