Skip to content
joshf edited this page Sep 9, 2014 · 8 revisions

To use clean URL's add the following to your .htaccess file:

RewriteEngine On
RewriteRule ^track/(.+)$ Indication/get.php?id=$1 [L]

Replace "track" with the name of your Indication folder, it is probably best to use a different name for the clean URL.

To make sure that the tracking link prompt is correct, change line 232 from:

value: "<?php echo PATH_TO_SCRIPT; ?>/get.php?id=" + id + "",

To:

value: "<?php echo PATH_TO_SCRIPT; ?>/track/" + id + "",

Clone this wiki locally