Metadatos no se cambian al actualizar a la ultima versión

#282389
  • Resolved Santiago Martínez
    Rank Math free

    Hola buenas tardes

    Me comunico con ustedes ya que en estas ultimas semanas, me ha sucedido algo sobre los títulos y descripciones de los post en cuanto a actualizar, no se actualizan se quedan como están, he revisado la consola y me ha aparecido lo siguiente: GET https://test.casasdeapuestas.bet/wp-json/rankmath/v1/updateMeta/?_locale=user 404 (Not Found), la verdad me ha funcionado muy bien todo, solo es esto que no me lo permite actualizar.

    Si necesitan acceder al sitio puedo proporcionales accesos temporales al WordPress

    Agradecería su ayuda.

Viewing 5 replies - 16 through 20 (of 20 total)
  • Nigel
    Rank Math business

    Hello

    I have added the following snippet above the default WordPress snippet of your staging site and was able to update a post.

    
    <IfModule mod_rewrit.c>
    # Force trailing slash
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_METHOD} GET
    RewriteCond %{REQUEST_URI} !(.*)/$
    RewriteCond %{REQUEST_FILENAME} !\.(gif|jpg|png|jpeg|css|xml|txt|js|php|scss|webp|mp3|avi|wav|mp4|mov|pdf|html|htm|xst)$ [NC]
    </IfModule>
    

    I hope that helps.

    Hola he intentado y no me funciono así como tal pero lo resolví agregando una linea adicional de la siguiente forma y ha funcionado

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_METHOD} GET
    RewriteCond %{REQUEST_URI} !(.*)/$
    RewriteCond %{REQUEST_FILENAME} !\.(gif|jpg|png|jpeg|css|xml|txt|js|php|scss|webp|mp3|avi|wav|mp4|mov|pdf|html|htm|xst)$ [NC]
    RewriteRule ^(.*)$ https://domain.com/$1/ [R=301,L]

    Hello,

    I am glad that you found a workaround for it.

    Could you please confirm if this resolves your issue with regards to updating the metadata?

    Looking forward to helping you.

    Hola que tal, ese código si resolvía mi problema pero me generaba otro, ya que con esto me distorsionaba la navegación interne del WordPress, las paginas me mandaban a los plugins, así que estuve reajustando y el código que ya funciona sin ningún problema es el siguiente:

    # Force trailing slash
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_METHOD} GET
    RewriteCond %{REQUEST_URI} !\.[^./]+$
    RewriteCond %{REQUEST_URI} !(.*)/$
    RewriteCond %{REQUEST_FILENAME} !\.(gif|jpg|png|jpeg|css|xml|txt|js|php|scss|webp|mp3|avi|wav|mp4|mov|pdf|html|htm|xst)$ [NC]
    RewriteRule ^(.*)$ https://domain.com/$1/ [R=301,L]

    Por lo tanto comento que ya con esto doy por terminado mi problema muchas gracias por su apoyo

    Hello,

    Thank you for the update and we’re glad that you were able to sort this problem.

    Please feel free to reach out to us again in case you need any other assistance.

    We are here to help.

    Thank you.

Viewing 5 replies - 16 through 20 (of 20 total)

The ticket ‘Metadatos no se cambian al actualizar a la ultima versión’ is closed to new replies.