Doesnt work for me, it always redirect to “https://sg.applebun.com/cgi-sys/defaultwebpage.cgi”
I have no idea why, again, the single post pages, dashboard etc on sg.applebun.com work, just the index.php immediately goes to above address.
– DNS Wildcard is set and pointing at public html folder which is the root install of wordpress
– htaccess file is changed accordingly
– wp-config file is changed accordingly
– blog.dir is created in wp-content
– I’ve flushed my DNS Memory multiple times
Even if i call https://sg.applebun.com/index.php directly -> goes to https://sg.applebun.com -> goes to above error
This is my htaccess content:
#Made Multi-Site with Multi-Site Enabler 1.5#
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]
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"
</IfModule>
## EXPIRES CACHING ##
This is my wp-config content:
define(‘WP_ALLOW_MULTISITE’, true);
define ('MULTISITE', '1');
define ('SUBDOMAIN_INSTALL', '1');
define ('DOMAIN_CURRENT_SITE', 'applebun.com');
define ('PATH_CURRENT_SITE', '/');
define ('SITE_ID_CURRENT_SITE', 1);
define ('BLOG_ID_CURRENT_SITE', 1);
$base = '/';