URL Rules

1. Filling Rules

Partial or Full URLs Allowed: You can enter either a partial URL or a complete URL. Case sensitivity does not apply.


Default Partial Matching: By default, the system uses partial matching mode, so there is no need to add * in the URL. Note: The system does not treat * as a wildcard character.


URL Parameter Support:

The system allows the inclusion of URL parameters and can recognize them even if their positions are rearranged.

The system performs partial matching on the combined "parameter name + parameter value" (e.g., s=admin is treated as a single unit for matching).


2. Example Explanations


/admin/

Matches URLs containing /admin/, such as:

https://www.magiaegis.com/admin/login.php


Non-matching URLs:

https://www.magiaegis.com/adminLogin/



/index.php?s=admin

Matches URLs containing /index.php?s=admin, regardless of parameter order, such as:

https://www.magiaegis.com/index.php?s=admin&m=login

https://www.magiaegis.com/index.php?m=login&s=admin

https://www.magiaegis.com/index.php?m=login&s=admin123

https://www.magiaegis.com/index.php?m=login&as=admin123


Non-matching URLs:

https://www.magiaegis.com/index.php?m=login&sa=admin123

https://www.magiaegis.com/login.php?m=a&s=admin



http://www.magiaegis.com/admin

Matches URLs exactly containing http://www.magiaegis.com/admin, such as:

http://www.magiaegis.com/admin/index.php


Non-matching URLs:

https://www.magiaegis.com/admin/index.php (Different protocol)

http://magiaegis.com/admin/index.php (Missing www subdomain)


<< File Path Rules