I am new to WordPress. I installed WordPress 3.3.1 in my local computer, Windows 7. Immediately create multiside.
Everything so far is working. I can preview a test post (but image cannot be displayed). Then when I published, I got Error 404 for that page just published. I guess this is the url link issue.
Page link is http://test.myblog.com/2012/01/04/eureka/
Image is at http://test.myblog.com/files/2012/01/scan0002.jpg
If I copy the folder ....\htdocs\wp-content\blogs.dir\2\files to ...\htdocs\ then the image can be displayed. It means my image upload to blogs.dir is working but the url path does not get redirected correctly or something like that.
Content of .htaccess is as follows (I copy and paste during the network setup):
DirectoryIndex index.php index.html
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
file=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]