Greetings,
I'm running osTicket v1.9.7 (4be5782) on Apache on a Synology NAS device. I've been experimenting with ways to make the following work:
http://helpdesk.domain.com and https://helpdesk.domain.com both rewrite to https://helpdesk.domain.com/osticket/upload.
Every time I get that working it breaks account activation and password reset links and gives a 404 error, "page you are looking for cannot be found". Does anyone know how I can avoid that happening?
My current htaccess file has the following lines:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) https://helpdesk.domain.com/osticket/upload [R=301,L]
I'm running osTicket v1.9.7 (4be5782) on Apache on a Synology NAS device. I've been experimenting with ways to make the following work:
http://helpdesk.domain.com and https://helpdesk.domain.com both rewrite to https://helpdesk.domain.com/osticket/upload.
Every time I get that working it breaks account activation and password reset links and gives a 404 error, "page you are looking for cannot be found". Does anyone know how I can avoid that happening?
My current htaccess file has the following lines:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) https://helpdesk.domain.com/osticket/upload [R=301,L]