sphinx Posted July 11, 2013 Share Posted July 11, 2013 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] 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. 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! Link to comment https://forums.phpfreaks.com/topic/280075-trimming-the/#findComment-1440356 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.