Can I use the same Folder name as a Multisite Blog?

By default, yes, you will have conflicts. The default WordPress .htaccess rules look something like this: # 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 The -f and -d in those lines are important here. They basically … Read more

WordPress multisite with same content

This would take a little bit of work, but you could adapt code from this plugin: http://www.mihaivalentin.com/different-wordpress-theme-depending-of-the-current-user/ First you would point all the domains to the same site. This plugin changes the current theme depending on the user logged in. But you could change the logic to change the theme depending on the referrer address. … Read more

Forward and mask a WordPress website

There are two aspects to site’s URL in WP (baseline case, multisite aside): Which URL it considers “real”, responds to, and uses to generate links. URLs previously generated and persistently stored in content. Former is pretty malleable and as you discovered already is simply a matter of configuration. More so it’s technically easy (and practically … Read more