When I upgraded to osTicket 12.2 my CAS plugin stopped working. When the cas server returns back to osticket I get the error "URL Not Supported". I think it has something to do with the rewrite config I have set on the server, but it worked before. My rewrite config is below, does anyone have an idea what the issue could be?
<Location "/api">
Require all granted
Rewrite rules
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.*/api)
RewriteRule .*$ %1/http.php/$1 [L]
</Location>