Please Help me with a small redirecting rule!

Discussion in 'Site & Server Administration' started by MyArtGallery, Feb 12, 2012.

  1. #1
    Hi All,Can anyone help me please with a small redirecting rule.

    I want to redirect all the urls that contains index.php to the home page "/"

    For example all this links should be redirect to home page:

    www.site.com/index.php ..to ....www.site.com

    www.site.com/index.php?_id_prod_35 ...www.site.com

    no matter how long is the url and the format. If it contain inde.php inside..then i would like to to be redirected to the home page.

    can anyone help me please?

    thanks in advance.
     
    MyArtGallery, Feb 12, 2012 IP
  2. maneetpuri

    maneetpuri Active Member

    Messages:
    152
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    58
    #2
    You need to create .htaccess file and need to be inserted with the following code:

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^site\.com$ [NC]
    RewriteRule ^(.*)$ http://www.site.com/$1 [R=301,L]

    After you are done with it, put this file in the root directory of your website.

    Hope this helps!

    Maneet Puri
     
    maneetpuri, Feb 15, 2012 IP