How to 301 redirect by using .htaccess?

Discussion in 'Site & Server Administration' started by farhanijaz, Jul 9, 2013.

  1. #1
    I have changed story.php to deal.php for SEO. How can I redirect more than 3000 urls to new location using htaccess.

    Please see example:
    domainname/story.php?title=xyz
    to:
    domainname/deal.php?title=xyz

    Any help please?
     
    Solved! View solution.
    Last edited: Jul 9, 2013
    farhanijaz, Jul 9, 2013 IP
  2. #2

    RewriteEngine On
    RewriteRule ^story.php /deal.php [QSA,R=301]
    Code (markup):
     
    liamwli, Jul 9, 2013 IP