badai Currently using this format: https://my.domain/my_folder?some-very-long-parameter This work fine. How to make it to become https://my.domain/my_folder/some-very-long-parameter Currently my_folder just a folder under htdocs, not a virtual path. I can make it a virtual path if needed.
aprelium-support badai This should be relatively easy without needing to make it an alias. Edit the configuration of the host associated with my.domain Declare the following URL rewriting rule to that host: Type: Global Virtual Path regular expression: ^/my_folder/(.+)$ Conditions: Condition 1: Variable: REQUEST_FILENAME Operator: Is not a file Condition 2: Variable: REQUEST_FILENAME Operator: Is not a directory If this rule matches: Perform an internal redirection Redirect to: /my_folder?$1 Append Query String: checked Escape Redirection Location: checked Next Action: Stop matching Press OK twice and then press restart so that the new configuration is taken into account. Please let us know how it worked for you.