htpw
htpw copied to clipboard
Rule prevents to load data.js
The rule RewriteRule .(sql|data|json|yml|ini) - [F]
will prevent the load of /wp-includes/js/dist/data.js
and I can't edit posts.
Fix is to escape the dot: RewriteRule \.(sql|data|json|yml|ini) - [F]
(eventually should also add $ at the end to match better for file endings only)