简体   繁体   中英

"Add post" sometimes overwriting a previous post Wordpress

I have this issue with my wordpress site, sometimes posting a new post will overwrite a previous post. Specially one of my writers is suffering from this problem very much. I am using litespeed cache. I've also enabled Redis object caching on my website recently but I had the problem before enabling it too.

I resolved this by adding a htaccess file with below content in wp-admin folder.

<IfModule mod_expires.c>
 ExpiresActive On
 ExpiresByType text/html "access plus 0 seconds"
</IfModule>

RewriteRule ^(.*)$ $1 [NS,E=no-gzip:1,E=dont-vary:1]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM