Afternova Posted July 3, 2014 Share Posted July 3, 2014 Help guys, How to create right .htaccess redirect form product page to custom page? Example: Redirect http://domain.com/cart.php?gid=5 to http://domain.com/custom-page I tried this, but no luck: Redirect 301 /cart.php?gid=5 /custom-page/ Thank You 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted July 5, 2014 Share Posted July 5, 2014 well you can use a tool like this one and here is how to do it RewriteEngine On RewriteRule ^/custom-page([/]*)$ ./cart.php?gid=5 [L,NC] 0 Quote Link to comment 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.