🎯 Exact Match Redirect
Redirects only when the URL is an exact match. This is the safest redirection method.
Configuration Rule
# Exact Match Test Configuration
=localhost:3000####https://www.example.com
=file:///Downloads/full/test_local.html####https://www.example.com/full/
=file:///Users/*/dev/*/pickone/*.html####https://production.example.com/{3}
💡 Rule Description
Use the =
prefix for an exact match. The redirect is triggered only if the URL is identical.
- The safest matching method, avoiding unintended triggers.
- Suitable for redirecting specific domains or full URLs.
- Supports exact path matching for local files.
- Supports generic paths across different users (using the
*
wildcard). - Recommended for critical redirection rules in a production environment.
How to Test
Test Method:Enter
localhost:3000
in the address bar.Local File Test:Open
file:///Downloads/full/test_local.html
.Cross-User Path Test:Open
file:///Users/[YourUsername]/dev/[YourProject]/pickone/test.html
.Expected Result:Automatically redirects to the corresponding target URL.