htpw icon indicating copy to clipboard operation
htpw copied to clipboard

Rule prevents to load data.js

Open TheDelta opened this issue 1 year ago • 0 comments

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)

TheDelta avatar Nov 02 '23 10:11 TheDelta