Rewrite /?rest_route=/ link to /wp-json/ without changing default permalink structure in apache

Solved by this lines:


RewriteEngine On
RewriteBase /
RewriteRule ^wp-json/(.*) /?rest_route=/$1 [L]

Leave a Comment