Mobile app version of vmapp.org
Login or Join
Angela700

: Blogger multiple custom domains? I have two domains I'd like to use for the same blogger page (some-example.bloger.com) on two sites. One is blog.example.ca, the other domain is blog.meta-example.com

@Angela700

Posted in: #Blogger

I have two domains I'd like to use for the same blogger page (some-example.bloger.com) on two sites.

One is blog.example.ca, the other domain is blog.meta-example.com

Both should end up displaying the same blog, except I can't find a way to put two blogs together.

Other than forwarding the sub-domain to go to a new site, do I have any way to make this work?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Angela700

2 Comments

Sorted by latest first Latest Oldest Best

 

@Turnbaugh106

If you can know how to use own sitename with Blogger Service, you can imagine to create CNAME on CNAME, as result - both names will be served by the same Blogger blog.

You have only test will sites save own domain in links or not (I'm not sure in handling of HOST request by G)

10% popularity Vote Up Vote Down


 

@Dunderdale272

Are they on the same server? Because if so you can modify your turbopanel.conf via SSH

Mine is located in etc/httpd/conf.d/turbopanel.conf but yours may differ.

It should look something like this:

NameVirtualHost 123.45.67.89:80

<VirtualHost 123.45.67.89:80>
ServerAdmin "webmaster@site1.com"
ServerName site1.com
ServerAlias site1.com MIMEMagicFile /dev/null
CustomLog logs/site1.com_access_log "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-agent}i""
ErrorLog logs/site1.com_error_log

DocumentRoot "/home/site1/public_html"
<Directory "/home/site1/public_html">
Options +Indexes +FollowSymLinks
Order allow,deny
Allow from all
AllowOverride All
</Directory>

Alias /usage "/home/site1/public_html/usage"
<Location /usage>
Order allow,deny
Allow from all
</Location>
</VirtualHost>

NameVirtualHost 123.45.67.89:80

<VirtualHost 123.45.67.89:80>
ServerAdmin "webmaster@site2.com"
ServerName site2.com
ServerAlias site2.com MIMEMagicFile /dev/null
CustomLog logs/site2.com_access_log "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-agent}i""
ErrorLog logs/site2.com_error_log

DocumentRoot "/home/site2/public_html" # <--------- Change this
<Directory "/home/site2/public_html">
Options +Indexes +FollowSymLinks
Order allow,deny
Allow from all
AllowOverride All
</Directory>

Alias /usage "/home/site2/public_html/usage"
<Location /usage>
Order allow,deny
Allow from all
</Location>
</VirtualHost>


Change the DocumentRoot of the second site to the same as the first



You can also set up a symlink with

ln -s /site1/public_html /site2/public_html


This will make public_html in site2 look to /site1/public_html

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme