New Site
-
I seem to be having the same problem a lot of people are experiencing with installing new sites on the Multisite setup.
My main site which is working fine is setup in a subdirectory mydomain/wordpress/
My new site will be installed at mydomain/wordpress/newsite
When clicking on Add New Site to create a new site this is listed in My Sites but if I click the Dashboard or Visit links it directs me to Page Not Found.
My .htaccess file is as follows
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule># END WordPress
Any ideas how I can rectify this?
- The topic ‘New Site’ is closed to new replies.