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.