sphinx Posted July 11, 2013 Share Posted July 11, 2013 (edited) Hello. I want to use .htaccess to redirect to eBay items When I use test.co.uk/12345 as an example It is outputting: test.co.uk/test=/12345/go I need it to output: test.co.uk/test=12345/go Thank you RewriteEngine on RewriteCond %{HTTP_HOST} =test.co.uk [OR] RewriteCond %{HTTP_HOST} =www.test.co.uk RewriteCond %{REQUEST_URI} !^/?$ [NC] RewriteRule ^ http://www.ebay.co.uk/test=%{REQUEST_URI}/go [R=301,L] Edited July 11, 2013 by sphinx Quote Link to comment https://forums.phpfreaks.com/topic/280075-trimming-the/ Share on other sites More sharing options...
requinix Posted July 11, 2013 Share Posted July 11, 2013 Change the one RewriteCond to RewriteCond %{REQUEST_URI} ^/(.+)and then use %1 in place of the %{REQUEST_URI} in the RewriteRule. Quote Link to comment https://forums.phpfreaks.com/topic/280075-trimming-the/#findComment-1440352 Share on other sites More sharing options...
sphinx Posted July 11, 2013 Author Share Posted July 11, 2013 Thank you! Quote Link to comment https://forums.phpfreaks.com/topic/280075-trimming-the/#findComment-1440356 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.