Hello,
I followed this guide : https://docs.osticket.com/en/latest/OAuth2/Microsoft%20Authorization%20Guide.html
But when i get a "File not found" when redirected to "https://www.xxxxx.fr/entretien/api/auth/oauth2?code=1....x.
I use a mutualised hosted site on OVH, and htaccess look like this :
<IfModule mod_rewrite.c>
RewriteEngine On
## http -> https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.*/apps)
RewriteRule ^(.*)$ %1/dispatcher.php/$1 [L]
</IfModule>