Re: admin bar links re-direct to homepage
Ok, one major difference I’m noticing when comparing my local install and my live site it their htaccess and wp-config.php.
For example, my local wp-config.php reads:
$base = '/wordpress-mu/';
define('DOMAIN_CURRENT_SITE', 'localhost.localdomain' );
define('PATH_CURRENT_SITE', '/wordpress-mu/' );
while my site wp-config.php reads:
$base = '/';
define('DOMAIN_CURRENT_SITE', 'blogs.empire-edutools.net' );
define('PATH_CURRENT_SITE', '/' );
Does this make a difference to have the $base set?
Also line #2 of my local .htaccess reads:
RewriteBase /wordpress-mu/
while site .htaccess reads:
RewriteBase /
I think this is typical, but just want to verify?