• Resolved phoenix13

    (@phoenix13)


    Hello, I test Gutenberg …. The problem is this: the title of the page is always the same (Auto Draft). If I change, the title comes back.

    Note: what I do in the page does not register. If I preview, nothing is displayed (except Auto Draft)

    How to fix the problem please?

Viewing 1 replies (of 1 total)
  • Thread Starter phoenix13

    (@phoenix13)

    I found the solution to the problem. In fact, it was a problem with Nginx. WordPress runs on a Nginx server and the Plesk control panel.

    On Plesk (17.8.11) , rewrite rules (for pretty urls WordPress) :

    -BAD (issue Gutenberg)-

    rewrite /wp-admin/$ /wp-admin/index.php break;
    rewrite /$ /index.php break;

    -GOOD (perfect for Gutenberg) –

    `if (!-e $request_filename){
    rewrite ^(.*)$ /index.php break;
    }`

Viewing 1 replies (of 1 total)

The topic ‘Draft auto’ is closed to new replies.