cloudflare / cloudflare-php

PHP library for the Cloudflare v4 API
BSD 3-Clause "New" or "Revised" License
621 stars 222 forks source link

PageRules not work #241

Open John-Henrique opened 1 year ago

John-Henrique commented 1 year ago

I`m trying do a page rule redirection, but every time get a error "1004 - Page Rule validation failed: See messages for details"

This is the example of code

        $pageRulesT = new Cloudflare\API\Configurations\PageRulesTargets( "webmail.domain.com/*" ); // Page Rules Targets
        $pageRulesA = new Cloudflare\API\Configurations\PageRulesActions( 301, 'https://mail.zoho.com/zm/' ); // Page Rules Actions
        $pageRules->createPageRule( $zoneID, $pageRulesT, $pageRulesA, true, null );

How to solve this?