Skip to content

Instantly share code, notes, and snippets.

@khlbrg
Created December 20, 2013 06:51
Show Gist options
  • Save khlbrg/8051282 to your computer and use it in GitHub Desktop.
Save khlbrg/8051282 to your computer and use it in GitHub Desktop.
Remove 301 redirect loop on Wordpress on Nginx
location / {
try_files $uri $uri/ /index.php?q=$uri$is_args&$args;
}
//in functions.php in theme
add_filter( 'got_rewrite', '__return_true' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment