Hi, I am using apache to host my website. Is there any way to hide the parameters that are being sent using Apache Mod rewrite? For eg: this is the url http://mysite/blog?pageid=test&name=peter I want to hide the parameters, basically everything that comes after "blog". Thanks
I don't think you should do that, but here is the code which could work: RewriteEngine on RedirectMatch 301 ^/blog?pageid=(.*)&name=(.*) http://mysite/blog Code (markup): You should rather rewrite the adress to something like http://mysite/blog/test/peter.html google likes that