I have MSM working on my production server, but I need to make some edits to the templates etc and I want to set up a local development environment.
How do I set up Multi-Site to work on my localhost?
Multi Site Directory structure:
C2EA/index.php
C2EA/admin.php
admin.php
$system_path = '../system';
$assign_to_config['site_name'] = 'C2EA';index.php
$system_path = '../system';
$assign_to_config['site_name'] = 'C2EA';
$assign_to_config['cp_url'] = 'http://localhost:8888/C2EA/admin.php';When I browse to localhost:8888/C2EA, it seems to be pulling the right template. But as soon as I try to reach another template group within it
(localhost:8888/C2EA/testing),
I get served my default_site’s home page? I am not sure what else I need to do to make this work.
TIA