Map Blog pages to different custom URLs

blogbloggerdomainurl

I have a subdomain currently pointing towards a blog I write on Blogger.

I would like to add a new page to this blog and point an entirely separate subdomain to that page.

So, given that status.mysite.com points to the main page, how can I get blog.mysite.com to point to page 2?

Best Answer

If your server is apache you can go for solution like mod_rewrite with declarations like these :

RewriteEngine On
RewriteCond %{HTTP_HOST} blog\.mysite\.com
RewriteRule . /page2

And in your domain name zone, blog.mysite.com is just an alias of status.mysite.com.