Themes not working in multisite subfolders
-
I would appreciate any help in getting themes to work in sub folders.
Themes work ok on ‘cyc.manorway.org.uk’ but refuse to work on sub folders: ‘cyc.manorway.org.uk/karate’. Subfolders have been set to use the WP theme 2012.
Is this because I have used both a subdomain and subfolders?As you see I have configured the temporary test site https://www.manorway.org.uk for sub domains ‘cyc’ and sub folders, in this case ‘karate’.
My host is Namesco and their servers are Zeus based running Linux.
They have produced their own rewrite.script but this and others found online are unable to help in getting the themes to work in the subfolders.
cyc.manorway.org.uk has been setup with a ‘Wildcard’ in their DNS setup, although they say that it is not necessary.There are no plugins running.
My present rewrite.script:
RULE_0_START: # get the document root map path into SCRATCH:DOCROOT from / # initialize our variables set SCRATCH:ORIG_URL = %{URL} set SCRATCH:REQUEST_URI = %{URL} # see if theres any queries in our URL match URL into $ with ^(.*)\?(.*)$ if matched then set SCRATCH:REQUEST_URI = $1 set SCRATCH:QUERY_STRING = $2 endif RULE_0_END: RULE_1_START: # prepare to search for file, rewrite if its not found set SCRATCH:REQUEST_FILENAME = %{SCRATCH:DOCROOT} set SCRATCH:REQUEST_FILENAME . %{SCRATCH:REQUEST_URI} # check to see if the file requested is an actual file or # a directory with possibly an index. don't rewrite if so look for file at %{SCRATCH:REQUEST_FILENAME} if not exists then look for dir at %{SCRATCH:REQUEST_FILENAME} if not exists then set URL = /index.php?q=%{SCRATCH:REQUEST_URI} goto QSA_RULE_START endif endif # if we made it here then its a file or dir and no rewrite goto END RULE_1_END: QSA_RULE_START: # append the query string if there was one originally # the same as [QSA,L] for apache match SCRATCH:ORIG_URL into % with \?(.*)$ if matched then set URL = %{URL}&%{SCRATCH:QUERY_STRING} endif goto END QSA_RULE_END: " Script added to wp-config.php: " /*Multisite */ define( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'cyc.manorway.org.uk'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); define('WP_ALLOW_REPAIR', true); /* That's all, stop editing! Happy blogging. */
[Moderator Note: Please post code & markup between backticks (not double quotes) or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Any help in getting themes to work on subfolders would be very much appreciated.
Thank you
- The topic ‘Themes not working in multisite subfolders’ is closed to new replies.