• Resolved jhavelka747

    (@jhavelka747)


    Does not matter what theme I use, one of wordpress’s themes or our custom theme. Theme works on main page, but the sub pages it does not show up. Please let me know what I can do.

    [Signature removed by moderator per forum rules.]

Viewing 3 replies - 16 through 18 (of 18 total)
  • Jason,

    It’s the faceoff that is messing things up. I’m not an expert on htaccess or GoDaddy, but in your htaccess you have

    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ faceoff/$2 [L]

    This basically says take all of that stuff before .php and the end of the string and then prepend it with faceoff. Now, I’m guess that faceoff is the name of the cPanel user because you said

    to the file manager, then to Faceoff,

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    faceoff should be a folder name actually. It’s not abnormal for a server to have that.

    What version of WP were you running when you started with Multisite? If it was BEFORE 3.5, we’ll need to jigger about, but this is the default for Multisite 3.5+ in subfolders:

    RewriteEngine On
    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]
    Thread Starter jhavelka747

    (@jhavelka747)

    Thank you, it was that last fix… Great Job Guys!!!!!!!!!!!

    Jason

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Themes not working on multi site application’ is closed to new replies.