How can i hide get parameters from URL using .htaccess? I don't want to change GET to POST but I rather like to add .htaccess into a directory named xxx where the the page is located to hide parameters from the URL
I tried this but it doesn't change anything
RewriteEngine on
RewriteRule ts125/xxx/(.*) imdetail.php?sid=$1
RewriteRule ts125/xxx/(.*) imdetail.php?sid=$1=$1
RewriteRule ts125/xxx/(.*) imdetail.php?sid=$1
 
    