Hello, How can I hide querystring from URL using .htaccess so that instead of: http://www.site.com/subscribe.php?email=EMAIL@DOMAIN.COM&name=NAME Code (markup): it just shows, for example: http://www.site.com/subscribe.php Code (markup): Thanks!
Hi, That's HTTP Post, you can't mask HTTP GET (?key1=value1&key2=value2) while retaining values. You can redirect if you wish, but the email will be lost. Hope that helps, Jay