Custom Rules Testing
Headers
Full URL match
/man/sim
/man/sim
Route Parameters
/user/:name
/user/sim
Multiple Route Parameters
/customer/:sex/:name
/customer/male/sim
Match files with specific extensions
/avatar/*.jpg
/avatar/1.jpg
Match files with wildcard
/assets/*/party.jpg
/assets/dinner/party.jpg
URL with wildcard
/name/*
/name/sim
URL Encoding with wildcard
/%E6%A0%87%E5%A4%B4*
/%E6%A0%87%E5%A4%B4test
Redirects
Redirection with wildcard
/redirect-a/*.jpg
/redirect-a/1.jpg
Redirection with route parameters
/redirect-b/:id
/redirect-b/123
Redirection with multiple route parameters
/redirect-c/:id/:name
/redirect-c/123/sim
Redirection base example
/redirect-d/hello
/redirect-d/hello
Redirection base example
/redirect-d/hello
/redirect-d/hello
Redirection with route parameters and wildcard
/rewrite-f/*/:name
/rewrite-f/hello/sim