/** * Render the friendly url. * * @example * FRIENDLY_URL_OFF * showthread.php?t=1234&p=2 * * FRIENDLY_URL_BASIC * showthread.php?1234-Thread-Title/page2&pp=2 * * FRIENDLY_URL_ADVANCED * showthread.php/1234-Thread-Title/page2?pp=2 * * FRIENDLY_URL_REWRITE * /threads/1234-Thread-Title/page2?pp=2 * RewriteRule ^/vb4/threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) /vb4/showthread.php?t=$1&page=$2 [QSA] * * @param int $method_override - Force a Friendly URL method * @param bool $canonical - Whether to skip encoding for output * @return string */