I tried to install Multisite on a MAMP server and have had no success.
I added a fake url in my terminal. lets say test.com
this into wp-config:
define('WP_ALLOW_MULTISITE', true);
this in httpd:
NameVirtualHost *
<virtualHost *>
ServerName test.com
ServerAlias test.com *.test.com
DocumentRoot "/Applications/MAMP/htdocs/cnb_press/"
<directory "/Applications/MAMP/htdocs/cnb_press/">
Options Indexes FollowSymLinks Includes
AllowOverride All
Order allow,deny
Allow from all
</directory>
</virtualHost>
I changed apache port to 80.
I am not able to access the wordpress site.
Any suggestions?