How to set up multisite on localhost?

Cool, it’s working!

  1. I’ve added the two Hosts via MAMP Pro

  2. My multisitetest folder needed a htaccess with RewriteBase /

  3. The $sites part in my index.php looks like this:

$sites = [
  'site-one.test' => 'site-one',
  'site-two.test' => 'site-two',
];

Thank you so much!