If your WordPress install is redirecting your url, this article explains how to stop it.
Add this line to your theme's functions.php file:
remove_action('template_redirect', 'redirect_canonical');
This will stop the canonical redirect, to allow you to use a more suitable redirect system.
Remember to clear your browser cache after the fix.