Map WP Multisite blog.example.com to anotherdomain.com/blog?

You can set up Caddy to reverse proxy requests to the Multisite installation: In your Caddyfile, add a reverse_proxy directive for the Multisite: somedomain.com/blog { reverse_proxy blog.example.com } This will forward all requests to somedomain.com/blog to the Multisite installation at blog.example.com. Next, update the WordPress Multisite configuration to use the new domain: In your WordPress … Read more

Cookies in Multisite network where sites have their own domain name?

First clear your browser’s cache (including cookies) and your server’s cache (cache plugins, etc.) Then set the following in your wp-config.php file: define(‘ADMIN_COOKIE_PATH’, “https://wordpress.stackexchange.com/”); define(‘COOKIE_DOMAIN’, ”); define(‘COOKIEPATH’, ”); define(‘SITECOOKIEPATH’, ”); Also, you may checkout the answer from HERE: define(‘WP_ALLOW_MULTISITE’, true); define(‘MULTISITE’, true); define(‘SUBDOMAIN_INSTALL’, false); define(‘DOMAIN_CURRENT_SITE’, ‘your-domain.example’); define(‘PATH_CURRENT_SITE’, “https://wordpress.stackexchange.com/”); define(‘SITE_ID_CURRENT_SITE’, 1); define(‘BLOG_ID_CURRENT_SITE’, 1); define(‘SUNRISE’, ‘on’); If … Read more

how to get my WP site’s IP? [closed]

This is more a general hosting question, rather than WordPress. Nonetheless, since you mentioned that you have your website on WordPress.com, you can have your new domain point to your WordPress site by it’s CNAME. In your case, your CNAME would look be example.wordpress.com (change example to your actual site). This is the recommended approach … Read more