help me how to redirect this page

techwap

Junior Member
Joined
May 22, 2010
Messages
168
Reaction score
68
Hi

google index my page linke that

h t t p : / / w w w . example .com / cat-7-p1.html?cat=42&page=1

and i want it to be like that

h t t p : / / w w w . example .com /cat-7-p1.html

what is the 301 code in htaccess?
 
Hi

google index my page linke that

h t t p : / / w w w . example .com / cat-7-p1.html?cat=42&page=1

and i want it to be like that

h t t p : / / w w w . example .com /cat-7-p1.html

what is the 301 code in htaccess?
Code:
[B]ColdFusion Redirect[/B]

  <.cfheader statuscode="301" statustext="Moved permanently">
  <.cfheader name="Location" value="http://www.new-url.com">  

php redirects
<?
    Header( "HTTP/1.1 301 Moved Permanently" ); 
    Header( "Location: http://www.new-url.com" ); 
?>
 
Google always works like a charm....

Code:
http://www.lmgtfy.com/?q=htaccess+redirect

But since no one likes using that:
Code:
http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file%3F
this looks like a good resource, scroll down until you find the one which matches your situation.
 
Back
Top