79532107

Date: 2025-03-24 20:46:30
Score: 0.5
Natty:
Report link

I was facing the same issue which was cause of cache and litespeed via htaccess. I have fixed by rename my .htaccess file to .htaccess-disabled and created new .htaccess file and add code from
https://developer.wordpress.org/advanced-administration/server/web-server/httpd/#basic-wp

I used WP Basic code for my website as it is not subdomain:

# BEGIN WordPress

RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress

Choose htaccess code accordingly, Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ricky Riccs