Add: AutoCert: CSRFField: CSRFSecret: Certs: Exceptions: Headers: LogDir: Logs: Methods: Remove: Replace: Routes: SkipDetection: URLLength: UploadSizeMB: UploadTypes: WAF:

Replace

Simple replace

Replace words or specific phrases from response content.

    Replace:
        AAA: BBB # replace 'AAA' to 'BBB'
        mypassw0rd: "" # remove `mypassw0rd` from responses

Regular expression

For advanced replacing use Regular expressions. Use golang regular expression syntax.

    Replace:
        <!--(.+?)-->: <!-- redacted comment --> # Replace
        <!--(.+?)-->: "" # Remove
        (John Doe): <abbr title=="Naem: $1">$1</abbr> # format

NOTE: You can test your expression against your webpage content using any online tool.
For example: https://regex101.com/ (choose golang language).