Eve
Forum Replies Created
-
Forum: Networking WordPress
In reply to: DNS alias to specific wordpress pageHi Mike,
Thanks for clarifying. There are ways to do what you are saying (show the content on one site while maintaining a different url in the browser bar) but Google isn’t going to like any of them. I would ask you to consider if the content in the browser bar is as important as directing your audience to the desired “site content.” If not, proceed with a redirect. If it is, then maybe you should consider cloning the content onto https://mikeonsite.ca to avoid any frame redirect shenanigans. By cloning, I mean do another WordPress site at https://mikeonsite.ca. I hope that helps!
Forum: Networking WordPress
In reply to: want to create a multisite websiteHi,
Cloudflare has some IP Geolocation tools that might get you started: https://support.cloudflare.com/hc/en-us/articles/200168236-What-does-CloudFlare-IP-Geolocation-do- It adds the country code to all requests to your website, from there it would be up to you to decide what to do with those requests.
I hope that helps!
Forum: Networking WordPress
In reply to: DNS alias to specific wordpress pageHi Mike,
First, let me make sure I understand what you want to do. When somebody visits your site at the root domain, domain.com you’d like to redirect them to: domain2.com/folder/page. Is that right?
If your hosting account uses cPanel you can just setup a redirect for domain.com, as explained here in the cPanel documentation: https://documentation.cpanel.net/display/ALD/Redirects. What this does is modify your .htaccess file for domain.com by adding the following to the end of the file:
RewriteCond %{HTTP_HOST} ^domain\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.domain\.com$ RewriteRule ^/?$ "http\:\/\/domain2\.com\/index\.php\/foler\/page\/" [R=301,L]
I hope this helps!
Forum: Fixing WordPress
In reply to: Can't access my siteIt sounds like your IP address has been blocked by your webhost. This can happen due to too many failed login attempts. Go to https://www.whatsmyip.org/ and get your IP address. Then ask your webhost to check for blocks on that IP. I hope this helps!