• Hello,

    I was able to instal a Sub-domain wordpress installation bij enabling Network.

    After that i put the following code in “wp-config.php”

    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', 'swrho.nl');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    Following code i put in “.htaccess”

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]

    the mainsite is working and accessable.
    But when i create a new site “test.swrho.nl” i can’t access this website or the dashboard.

    How can i resolve this problem ?

    grtz from Holland
    Manfred vd Waarsenburg

Viewing 1 replies (of 1 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Oh I see. I deleted your other topic. Next time, just un-mark it as resovled and put in this info ??

    You don’t have functional wildcard subdomains on your server. Check your DNS and make sure that it’s set up there, and then check with your host for directions on setting up wildcard subdomains.

Viewing 1 replies (of 1 total)
  • The topic ‘Help needed with Sub-domain WordPress multisite’ is closed to new replies.