Trouble resolving a domain name to a multisite sub-directory
-
Hello all,
I have a Goddady unlimited SSL hosting account with cPanel. I have successfully installed a multisite in the root directory here:
https://www.janaslani.com
https://www.janaslani.com/cc10/I’m having difficulty resolving a domain name and it’s SSL to a second site (DNS is properly resolving to my hosting IP):
https://www.cc20.com/
https://www.cc20.com/wp-adminI have configured the multisite .htaccess:
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule>
…and the wp-config.php:
/* Add any custom values between this line and the "stop editing" line. */ /* Multisite */ define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); define( 'DOMAIN_CURRENT_SITE', 'www.janaslani.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 ); /* That's all, stop editing! Happy publishing. */
Any help would be greatly appreciated,
– Edwin.
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Trouble resolving a domain name to a multisite sub-directory’ is closed to new replies.