Causes

  • A request method is not supported for the requested resource
    • For example, a GET request on a form that requires data to be presented via POST, or a PUT request on a read-only resource.

Fixes

Step 1: Check To See If The URL Is Insert Correctly
    • Double check it to prevent any mistyped.
Step 2: Confirm Your Server Configuration
    • For example, your web server is using Apache then you should look on the an.htaccess file within the root direcoty of your website file system
    • Example: look for lines that use Rewrite directives. These are part of the mod_rewrite module in Apache. Then you may change according to below codes
        • RewriteEngine on
        • RewriteCond %{REQUEST_URI} ^/USERS/CREATE/?.*$
        • RewriteCond %{REQUEST_METHOD} =GET
        • RewriteRule ^(.*)$ http://example.com[R=405, L]
Step 3: Inspect Server-Side Logs

look through the server-side logs, you may look through of the logs to find any mistake.

Step 4: Contact NET

if those steps still fail, you may contact NET Support for more information.