- Edited
hello i am new to osticket
comming from GLPI i was looking for a simple ticketing system for my clients.
i am runing windows server 2025 whit apache24 php an mysql data base.
osticket server is beind apache reverse proxy on a separate VM.
everyting works find but i am having hard time hiding the .php extention.
any one can help me whit this.
i try use :
RewriteEngine On
Redirect "/file.php" to "/file"
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+).php [NC]
RewriteRule ^ %1 [R=301,L]
Internally rewrite "/file" back to "/file.php"
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule .*?/?$ $1.php [NC,L]
but the page is no longer accessible.