URL RewritePaid Feature
URL Rewrite rules can modify a part of or the whole URL in three available ways:
- Find occurrences of a keyword and replace them with a new value,
- Replace matches with a regular expression with a template string,
- Override with a new arbitrary value.
No URL Decoding/Encoding Before or After the Modification
URL Rewrite rules treat URLs as plain strings.
If the URL is http://example.com/p/a/t/h
and the rule is replacing /p
with :8080/p
in path names, the resulting URL would be http://example.com:8080/p/a/t/h
.