Same problem, here.
Deactivated all plugins except Gutenberg and loaded standard Twenty Sixteen theme, to no avail.
The only odd thing here is that I am hosting on IIS 8.5.
— edit 1 —
Ah, i have an error in Chrome’s console:
VM1310:1 GET https://mydomain.com/wp-json/wp/v2/ 404 (Not Found)
Switched from and to Permalinks, wasn’t a solution.
— edit 2 —-
Ended up adding the following rule to my web.config:
<rule name="wordpress" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
Hope this helps other IIS admins.
-
This reply was modified 6 years, 3 months ago by JiL.
-
This reply was modified 6 years, 3 months ago by JiL.
-
This reply was modified 6 years, 3 months ago by JiL.