I'm using Nginx Http Upload Progress Module(http://wiki.nginx.org/HttpUploadProgressModule) for my video upload page(upload.php). Everything works fine, but after the video uploaded successfully, the URL display:
upload-success.php?X-Progress-ID=9040ccc12eb610ecb0362d5312e1b2fa
For some reason, i want to hide:
?X-Progress-ID=9040ccc12eb610ecb0362d5312e1b2fa
I've tried passing "X-Progress-ID" via hidden input in the form but it still display in the URL:
<input type="hidden" id="X-Progress-ID" name="X-Progress-ID" />
Any idea?