CNAME and Domain Mapping
-
Hello,
My wordpress blog is on https://www.domain.com currently. My main website is https://www.domain2.com. I have successfully created a CNAME with a subdomain of my main website to point to my blog (blog.domain2.com -> https://www.domain.com). If I ping the subdomain it’s showing https://www.domain.com with the correct IP address. My wordpress blog is hosted on GoDaddy.
It does recognize any of the my files though:
https://www.domain.com/2014/07/post WORKS
https://blog.domain2.com/2014/07/post 404 ErrorWithin Settings -> General I have changed the WordPress and Site Addresses to https://blog.domain2.com.
This is what I currently have in my .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Am I missing any basic steps for all the directories, posts, etc. to be showing up on my newly created subdomain (https://blog2.domain.com)?
- The topic ‘CNAME and Domain Mapping’ is closed to new replies.