Hi all,
I'm using WP-MU 3.0.1 with other script installed in root and created 1 site as a test, everything running well including the wp-admin dashboard for each site.
I did combine both .htaccess and index of WP-MU and the other script.
The problem actually simple which is related with WP .htaccess but it takes an hour for me to figure it out the solution till i give up and decided to write this post.
the test site is on http://demo.mayplaces.com
the problem is photos on this link not showing up
http://mayplaces.com/listings.html
I did quick fix on the .htacess but it only makes me can't access the only the main WP-MU dashboard.
Here is part of .htaccess which handle WP-MU
.
.
.
# BEGIN WordPress MU
RewriteRule ^index\.php$ - [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress MU
I'm sure the problem is on
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
Because photos on above link have similar structure like WP have.
Any clue what should i do?