I put together a quick WordPress site locally using MAMP, then checked it into an SVN repo. I then checked it out on to my development server.
I didn\'t change anything
if your webserver is nginx,you may need check the configure file of your nginx. If there is
if (!-f $request_filename){ rewrite ^/(.+)$ /index.php?$1& last; }
Replace these lines with
try_files $uri $uri/ /index.php?$args;
See also Nginx Pitfalls , WordPress wiki page on nginx