When i try to enter subdomain i’m redirected to main domain
When i try to enter subdomain i’m redirected to main domain
When i try to enter subdomain i’m redirected to main domain
Problems with homepage in different browsers
How can I disable redirect domains?
Ok, that’s WordPress’ standard .htaccess file – because all the sites use a common virtual root (think single folder) all domains are using the .htaccess code. Basically you need to rewrite the code to use separate instructions for each domain e.g. this would send a request for newdomain.com to a specific page. # Internally rewrite … Read more
If your domain name just redirects to wordpress.com, then there is nothing you can do. When the user is viewing one of your posts, they are viewing it on wordpress.com, so that is the link that is shared. This is a compromise you accepted when you set up your blog the way you did. If … Read more
When you import the WXR file to the WordPress install on the new domain, be sure to click the “Download attachments” checkbox that you are presented during the upload process.
I recommend using the search replace on ALL wordpress tables. You will have missed the entries in the options table as well as many other locations such as post meta, etc
I think you should try to get it to work in some other way. It’s normal it doesn’t work, since the url from the page can’t be changed by the .htaccess, because the url is not your permalink but the new domain. Why not set the name server of the new url, to the old … Read more
The idea of starting with a temporary domain or working on local hosting using XAMPP are good. Both assume some knowledge of setting up a hosting environment. The easier approach of the two is to work through your hosting provider who at least will be able to provide a turn-key solution and will help you … Read more
I always run queries in phpmyadmin http://www.phpmyadmin.net or adminer http://www.adminer.org/: UPDATE wp_options SET option_value = replace(option_value, ‘http://www.olddomain.com/’, ‘http://www.newdomain.com/’) WHERE option_name=”home” OR option_name=”siteurl”; UPDATE wp_posts SET guid = replace(guid, ‘http://www.olddomain.com/’,’http://www.newdomain.com/’); UPDATE wp_posts SET post_content = replace(post_content, ‘http://www.olddomain.com/’, ‘http://www.newdomain.com/’); Yes, some will say to never change the GUID, but changing the domain gives you no choice. Your … Read more