sufi Posted September 24, 2012 Share Posted September 24, 2012 I wish to redirect domain.com/whmcs/cart.php?gid=3 to domain.com/hosting-item-3.html. How can I do this? I tried several rule in htaccess, but I was not able to do this. Thanks in advance. 0 Quote Link to comment Share on other sites More sharing options...
jclarke Posted September 25, 2012 Share Posted September 25, 2012 You can try something like this in your .htaccess RewriteEngine On RewriteCond %{QUERY_STRING} ^gid=3$ RewriteRule ^/whmcs/cart.php$ /hosting-item-3.html? [L,R=301] 0 Quote Link to comment Share on other sites More sharing options...
sufi Posted September 25, 2012 Author Share Posted September 25, 2012 Thanks for this. But it did not work for me. Anything else? You can try something like this in your .htaccess RewriteEngine On RewriteCond %{QUERY_STRING} ^gid=3$ RewriteRule ^/whmcs/cart.php$ /hosting-item-3.html? [L,R=301] 0 Quote Link to comment Share on other sites More sharing options...
jclarke Posted September 26, 2012 Share Posted September 26, 2012 Try this instead and make sure it goes inside of the .htaccess in your main whmcs directory. RewriteEngine On RewriteCond %{QUERY_STRING} ^gid=3$ RewriteRule ^cart.php$ /hosting-item-3.html? [L,R=301] 0 Quote Link to comment Share on other sites More sharing options...
sufi Posted September 26, 2012 Author Share Posted September 26, 2012 Thank you very much It worked perfectly the way I was looking for. Many many thanks for this. Is there anything I can help you with? Try this instead and make sure it goes inside of the .htaccess in your main whmcs directory. RewriteEngine On RewriteCond %{QUERY_STRING} ^gid=3$ RewriteRule ^cart.php$ /hosting-item-3.html? [L,R=301] 0 Quote Link to comment Share on other sites More sharing options...
jclarke Posted September 27, 2012 Share Posted September 27, 2012 Your welcome, happy to help 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.