kyzen
kyzen

Reputation: 313

Delete query string through htaccess

I have a website that hacked some time ago. It is a WordPress. I have cleaned it up but in Google I keep seeing this links as shown below:

 http://www.mysite.com/?p=-16
 http://www.mysite.com/?month=-1034
 http://www.mysite.com/?sdoc=billy+jean+sucks

I want to remove the pages p=a, month=X and sdoc=y through .htaccess. I just need some guidance.

I have done some reading and think that perhaps RewriteRule ^/page /page? may be applicable. The question mark seems placed differently from that of my site. So I'm wondering whether RewriteRule ^/page /?page may be what applies.

That said I want a solution that deletes them based on the wildcard string p, month and sdoc. How can I achieve that?

I am a n00b but if directed I can help myself. I have tampered with my .htaccess file in the past so I'm not afraid to make the changes.

Please explain like I'm a true idiot or dummy. Thanks and much appreciated.

Upvotes: 0

Views: 359

Answers (1)

Harold Sota
Harold Sota

Reputation: 7566

If you are programming in ASP.NET se these http://msdn.microsoft.com/en-us/library/ms972974.aspx

Upvotes: 1

Related Questions