• my .htaccess:
    RewriteEngine on
    RewriteCond %{HTTP:Authorization} ^(.*)
    RewriteRule ^(.*) – [E=HTTP_AUTHORIZATION:%1]
    SetEnvIf Authorization “(.*)” HTTP_AUTHORIZATION=$1

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>

    # END WordPress
    my wp-config:

    * @package WordPress
    */

    /** set up for JWT authentication */
    define(‘JWT_AUTH_SECRET_KEY’, ‘some key here’);
    define(‘JWT_AUTH_CORS_ENABLE’, true);

    // ** MySQL settings – You can get this info from your web host ** //

    plugin is activated version 1.2.5
    I get error:
    {“code”:”rest_no_route”,”message”:”No route was found matching the URL and request method”,”data”:{“status”:404}}

    It is as if the plugin is not there. I have tried disabling all other plugins and have been search the web for about a day.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘{“code”:”rest_no_route”,”message”:”No route was found matching the URL and reque’ is closed to new replies.