• Hola,

    I’ve just installed multisite into my blog, I created a new site with a subdomain, but the website is not showing up.

    This is my subdomain: gio.cafenegocios.com

    I saw and earlier post where someone was having the same issue, and he contacted his hosting company, and they fixed it for him.I already contact my company, and they saiud they can’t help.

    So now I really need someone to shed some light here…Thanks in advance!

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

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Your requested host “gio.cafenegocios.com” could not be resolved by DNS.

    You need to set up the subdomain in order for WordPress to use it.

    Thread Starter gianwins

    (@gianwins)

    I setup the subdomain in my cpanel, and it is still not working. I tried putting the root folder under public html and under public_html/cafenegocios, neither seemed to get the site up. Any more ideas?

    Thread Starter gianwins

    (@gianwins)

    do you think it might be that its something wrong with my htcaccess file? this is how its looking now

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule . index.php [L]

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    I setup the subdomain in my cpanel, and it is still not working. I tried putting the root folder under public html and under public_html/cafenegocios, neither seemed to get the site up. Any more ideas?

    The root folder needs to be /public_html/ 🙂

    And yes, you messed up the .htaccess. It said ‘replace’ not ‘add to’ 🙂 Easy to fix. Use this.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule . index.php [L]
    </IfModule>
    # END WordPress
    Thread Starter gianwins

    (@gianwins)

    Hello,

    I;m sorry about the long reply. I changed the .htaccess file and the subdomain still isn’t working. Any other ideas on what may be wrong or any possible fixes?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    gio.cafenegocios.com is still not pointing to /public_html/

    If it was, it would redirect to the registration page for cafenegocios.com

    As it stands you get a blue host page.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Multisite subdomain site are not showing up’ is closed to new replies.