I want http://www.tsitouch.com/downloads/specifications
to redirect to http://www.tsitouch.com/support-header/downloads/category/1-specifications
AND
http://www.tsitouch.com/downloads/specifications?download=5:tsitouch-the-executive-series
to redirect to http://www.tsitouch.com/support-header/downloads/category/10-executive-series-utility
With URL Redirects,
both http://www.tsitouch.com/downloads/specifications
and http://www.tsitouch.com/downloads/specifications?download=5:tsitouch-the-executive-series
redirect to http://www.tsitouch.com/support-header/downloads/category/1-specifications
It has to do with the parameter ?download=5:tsitouch-the-executive-series at the end of the one link.
I found an example of code that may work, but have been unsuccessful at modifying it: https://stackoverflow.com/questions/13988815/htaccess-301-redirect-issue-with-url-variables
Here's what they suggested:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^id=123$
RewriteRule ^/?product\.php$ http://website.com.au/product_123.php? [L,R=301]
Help? Thanks!