We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9282a88 commit 2620ab5Copy full SHA for 2620ab5
appengine/wordpress/src/files/flexible/nginx-app.conf
@@ -1,9 +1,10 @@
1
location / {
2
- try_files $uri $uri/ /index.php?q=$uri&$args;
+ try_files $uri /index.php?q=$uri&$args;
3
}
4
5
-# Add trailing slash to */wp-admin requests.
6
-rewrite /wp-admin$ https://$host$uri/ permanent;
+location ~ ^/wp-admin {
+ try_files $uri $uri/index.php?$args;
7
+}
8
9
location /_ah/health {
10
return 200 'ok';
0 commit comments