Problem with nginx rewrites, I think. Conflict between the new make.wp.org/support and the support forums.
http://make.wordpress.org/support/2012/07/hello-world/
Incorrectly redirects to:
http://wordpress.org/support/2012/07/hello-world/
The make site is currently set to default permalinks to work around this for now. Can the nginx rules be modified to handle this case?
Andrew Nacin 10:20 pm on July 17, 2012 Permalink | Log in to Reply
Inside the $host = make.wordpress.org conditional, it should end with
rewrite ^. /index.php last;, which is what ends the @404-extend block. This will prevent rewrites designed for ^wordpress.org from causing problems elsewhere.learn.*, make.* and future subdomains should probably end up in their own stripped down wporg-wp.wordpress.org config file, as the relevant subdomains here run a mostly stock WP network, but I’ll leave that to @barry and @stankea.
Barry 10:30 pm on July 17, 2012 Permalink | Log in to Reply
Thanks – fixed.
@stankea – can you please look into breaking these things like make and learn into their own server blocks to make things less complicated? Thanks.